mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-25 16:00:22 +01:00
12 lines
497 B
HTML
12 lines
497 B
HTML
<div class="post_modified">
|
|
{% if post.edited_at %}
|
|
<div class="content-status edited">{% trans 'Post last edited at' %} <em class="edited-time">{{ post.edited_at }}</em></div>
|
|
{% endif %}
|
|
{% if post.clean.clean_local == '1' %}
|
|
<div class="content-status clean-local">{% trans 'Board rules permit this content' %}</div>
|
|
{% endif %}
|
|
{% if post.clean.clean_global == '1' %}
|
|
<div class="content-status clean-global">{% trans 'Global rules permit this content' %}</div>
|
|
{% endif %}
|
|
</div>
|