21 lines
319 B
HTML
21 lines
319 B
HTML
{% 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 %}
|
|
|