diff --git a/boards/static/css/md/base_page.css b/boards/static/css/md/base_page.css --- a/boards/static/css/md/base_page.css +++ b/boards/static/css/md/base_page.css @@ -309,6 +309,7 @@ li { .post-info { color: #ddd; + margin-bottom: 1ex; } .moderator_info { diff --git a/boards/templates/boards/post.html b/boards/templates/boards/post.html --- a/boards/templates/boards/post.html +++ b/boards/templates/boards/post.html @@ -14,6 +14,38 @@
{% endif %} +
+ ({{ post.id }}) + {{ post.title }} + {{ post.pub_time }} + {% if thread.archived %} + — {{ thread.bump_time }} + {% endif %} + {% if is_opening and need_open_link %} + {% if thread.archived %} + [{% trans "Open" %}] + {% else %} + [{% trans "Reply" %}] + {% endif %} + {% endif %} + + {% if moderator %} + + [{% trans 'Edit' %}] + [{% trans 'Delete' %}] + ({{ post.poster_ip }}) + [{% trans 'Ban IP' %}] + + {% endif %} +
{% if post.image %}
{% endif %}
- {% autoescape off %} {% if truncated %} {{ post.text.rendered|truncatewords_html:50 }}