diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/posts/templates/posts/note_list.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/posts/templates/posts/note_list.html b/app/posts/templates/posts/note_list.html index f1f585b..c4d287c 100644 --- a/app/posts/templates/posts/note_list.html +++ b/app/posts/templates/posts/note_list.html @@ -3,8 +3,8 @@ <main class="post-detail"> <div class="note-list">{% for object in object_list %}<article> <h2>{%if object.url%}<a href="{{object.url}}">{{object.title}}</a>{%else%}{{object.title}}{%endif%}<span class="note-edit"><a href="{{object.get_absolute_url}}">edit</a></span></h2> - <p>For: <a href="/post/{{object.post.pk}}/notes">{{object.post}}</a></p> <p>{{object.body_markdown}}</p> + <p class="small">For: <a href="/post/{{object.post.pk}}/notes">{{object.post}}</a></p> </article> {% endfor%}</div> </main> |