You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

notice.html 522B

12345678910111213141516
  1. {% extends 'base.html'%}
  2. {% block content %}
  3. <div class="container">
  4. {% for notice in notices %}
  5. <h3> {{ notice.notice_title }}</h3>
  6. <p> {{ notice.notice_text }}</p>
  7. <p><a href="{% url 'delete' deleteId=notice.id%}" class="btn btn-danger">Meldung löschen</a></p>
  8. <hr>
  9. {% endfor %}
  10. <p><a href="{% url 'new' %}" class="btn btn-info" role="button">Neue Nachricht</a></p>
  11. <p><a href="{% url 'logout' %}" class="btn btn-warning">Abmelden</a></p>
  12. {% endblock %}