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.

index.html 473B

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