14 lines
537 B
HTML
14 lines
537 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %} {{ title }} {% endblock title %}
|
|
|
|
{% block content %}
|
|
{% for notice in notices %}
|
|
<div class="jumbotron">
|
|
<h1 class="display-6">{{ notice.notice_title }}</h1>
|
|
<p class="lead">{{notice.notice_text}}</p>
|
|
<p><a href="{% url 'delete' notice.id %}" class="btn btn-info" role="button">Nachricht löschen</a></p>
|
|
</div>
|
|
{% endfor %}
|
|
<p><a href="{% url 'new' %}" class="btn btn-info" role="button">Neue Nachricht</a></p>
|
|
{% endblock content %} |