{% extends 'backoffice/base.html' %} {% load humanize %} {% load i18n %} {% load static %} {% block htmlhead %} {% endblock %} {% block scripts %} {% endblock %} {% block content %}
{% trans 'Events' %}: {{ mode_display }}
{% for entry in object_list %} {% endfor %}
{% trans "BulletinBoardEntry__timestamp" %} {% trans "BulletinBoardEntry__title" %} {% trans "BulletinBoardEntry__owner" %} {% trans "BulletinBoardEntry__is_public" %} {% trans "BulletinBoardEntry__hidden" %}
{{ entry.timestamp }} {{ entry.title }} {{ entry.owner.username }} {{ entry.is_public|yesno }} {{ entry.hidden|yesno }}
{% endblock %}