{% extends "base.html" %} {% block title %}News{% endblock %} {% block content %}

News

{% for notice in notices %}

{{ notice.notice_title }}

{{ notice.notice_text }}

{% if user.is_staff or notice.user_id == user.id %}

Meldung löschen

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

Neue Meldung erstellen

{% endif %} {% endblock %}