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 541B

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