{% extends "base.html" %} {% load i18n %} {% block more-user-links %} {{ block.super }} {% if perms.emissions.add_newsitem %} {% trans "Add a newsitem" %} {% endif %} {% endblock %} {% block appbar %}

{% trans "Newsitems" %}

{% if user.is_staff %} {% if user.is_superuser %} {% trans "Manage Categories" %} {% endif %} {% trans "All emissions" %} {% trans "All newsitems" %} {% endif %} {% endblock %} {% block content %} {% for category in object_list %}

{{ category.title }}

{% endfor %}

{% trans "Unsorted newsitems" %}

{% endblock %}