2014-10-20 17:17:19 +02:00
|
|
|
<div class="post_modified">
|
|
|
|
{% if post.edited_at %}
|
2015-03-30 05:12:35 +02:00
|
|
|
<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>
|
2014-10-20 17:17:19 +02:00
|
|
|
{% endif %}
|
2014-10-23 06:01:38 +02:00
|
|
|
{% if post.clean.clean_local == '1' %}
|
2014-10-20 17:17:19 +02:00
|
|
|
<div class="content-status clean-local">{% trans 'Board rules permit this content' %}</div>
|
|
|
|
{% endif %}
|
2014-10-23 06:01:38 +02:00
|
|
|
{% if post.clean.clean_global == '1' %}
|
2014-10-20 17:17:19 +02:00
|
|
|
<div class="content-status clean-global">{% trans 'Global rules permit this content' %}</div>
|
|
|
|
{% endif %}
|
2014-10-23 06:01:38 +02:00
|
|
|
</div>
|