1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-24 23:50:11 +01:00
vichan/templates/post/edited_at.html
2015-03-30 11:12:35 +08:00

12 lines
607 B
HTML

<div class="post_modified">
{% if post.edited_at %}
<div class="content-status edited">{% trans 'Post last edited at' %} <em class="edited-time"><time datetime="{{ post.edited_at|date('%Y-%m-%dT%H:%M:%S') }}{{ timezone() }}">{{ post.edited_at|date(config.post_date) }}</time></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>