{% extends "backoffice/moderation_base.html" %} {% load humanize %} {% load i18n %} {% load c3assemblies %} {% block content %}

Board-Eintrag #{{ object.id }}: {{ object.title }}

Metadaten
{% trans "BulletinBoardEntry__title" %}:
{{ object.title }}
{% trans "BulletinBoardEntry__owner" %}:
{% if object.owner %} {{ object.owner.username }} {% else %} -/- {% endif %}
{% trans "BulletinBoardEntry__timestamp" %}:
{{ object.timestamp }} ({{ object.timestamp|naturaltime }})
{% trans "BulletinBoardEntry__is_public" %}:
{{ object.is_public|yesno }}
{% trans "BulletinBoardEntry__hidden" %}:
{{ object.hidden|yesno }}
Text (en)
{{ object.text_html_en|safe }}
Text (de)
{{ object.text_html_de|safe }}
{% trans "nav_moderation" %}
{% if not object.hidden %} {% else %} {% endif %}
{% endblock content %}