/example_app/templates/story_detail.html
HTML | 10 lines | 8 code | 2 blank | 0 comment | 0 complexity | 55aff710f55edcadf37a065c7acd6dfb MD5 | raw file
Possible License(s): LGPL-3.0
1<h1>{{ object.title }}</h1> 2 3<dl> 4 <dt>Author</dt> 5 <dd>{{ object.author }}</dd> 6 <dt>Categories</dt> 7 <dd>{{ object.category.all }}</dd> 8</dl> 9 10{{ object.text }}