summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2023-07-24 13:18:35 -0500
committerluxagraf <sng@luxagraf.net>2023-07-24 13:18:35 -0500
commitc1a1272f489efdfed70853f4dd52badcb69efbc6 (patch)
tree6bf612b251cddd21954d8b8c42450a973c087d13
parent9b7ef91927a6133191878d0454e657a9d5e35083 (diff)
posts: rearranged some template display items
-rw-r--r--app/posts/templates/posts/note_list.html2
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>