MEIM_LSG/templates/index.html
2018-12-12 20:14:16 +01:00

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 %}