{% extends "base.html" %} {% block title %} News {% endblock %} {% block body %}
{% if user.is_authenticated %}

Abmelden

{% endif %} {% if not user.is_authenticated %}

Anmelden

{% endif %}
{% for notice in notices %}

{{ notice.notice_title }}

{{ notice.notice_text }}

{% if user.is_staff %}

Meldung löschen

{% endif %} {% endfor %}

Neue Nachricht

{% endblock %}