25 lines
541 B
HTML
Raw Normal View History

2019-11-20 06:26:16 +01:00
{% extends 'posts/base.html'%}
{% block title %}
News
{% endblock %}
{% block content %}
<div class="container">
{% for notice in notices %}
2019-11-27 10:42:24 +01:00
<h3>{{ notice.notice_title }}</h3>
2019-11-20 06:26:16 +01:00
<P> {{ notice.notice_text }}<p>
2019-11-27 10:42:24 +01:00
<P><a href="{% url 'delete' deleteId=notice.id %}" class="btn btn-danger">
Meldung löschen</a></P>
{% endfor %}
<p><a href="{% url 'new' %} "class="btn btn-info" role="button">Neue Nachricht</a></p>
2019-11-20 06:26:16 +01:00
</div>}
{% endblock %}