1234567891011121314151617181920 |
- {% extends 'base.html' %}
-
- {% block title %}
- News
- {% endblock %}
-
- {% block content %}
- <h1> Index der Polls-Applikation</h1>
-
- <div class="container">
-
- {% for notice in notices %}
- <h3>{{ notice.notice_title }}</h3>
- <p>{{ notice.notice_text }}</p>
- {% endfor %}
-
- </div>
-
- {% endblock %}
|