{% extends "wagtailadmin/base.html" %} {% load i18n %} {% block titletag %}{% trans "News" %}{% endblock %} {% block bodyclass %}menu-news{% endblock %} {% block content %}

{% blocktrans %}News{% endblocktrans %} {{ newsindex.url }}

{% if newsitem_list.exists %} {% for newsitem in newsitem_list %} {% endfor %}
Title Date

{{ newsitem }}

{{ newsitem.date }}
{% else %}
No news posts yet!
{% endif %} {% endblock %}