Solutions for MEIM
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 537B

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
1234567891011121314
  1. {% extends "base.html" %}
  2. {% block title %} {{ title }} {% endblock title %}
  3. {% block content %}
  4. {% for notice in notices %}
  5. <div class="jumbotron">
  6. <h1 class="display-6">{{ notice.notice_title }}</h1>
  7. <p class="lead">{{notice.notice_text}}</p>
  8. <p><a href="{% url 'delete' notice.id %}" class="btn btn-info" role="button">Nachricht löschen</a></p>
  9. </div>
  10. {% endfor %}
  11. <p><a href="{% url 'new' %}" class="btn btn-info" role="button">Neue Nachricht</a></p>
  12. {% endblock content %}