|
123456789101112131415161718192021222324252627282930313233343536 |
- {% extends 'base.html' %}
-
- {% block title %}
- News
- {% endblock %}
-
- {% block content %}
-
- <div class="container">
-
- {% for notice in notices %}
- <h3>{{ notice.notice_title }}</h3>
- <p>{{ notice.notice_text }}</p>
-
- <p><a href="{% url 'new' %}" class="btn btn-info" role="button">Neue Nachricht</a></p>
-
-
-
-
- <p><a href="{% url 'delete' deleteId=notice.id %}" class="btn btn-danger">
- Meldung loeschen</a></p>
- {% endfor %}
-
-
-
-
- </div>
-
-
-
-
-
-
-
- {% endblock %}
-
|