Django/Templates/Posts/index.html
2019-11-19 15:26:29 +01:00

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