You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 404B

123456789101112131415161718
  1. {% extends 'base.html' %}
  2. {% block title %}
  3. Index
  4. {% endblock %}
  5. {% block content %}
  6. <div class="jumbotron jumbotron-fluid">
  7. <div class="container">
  8. <h1>Index der Polls-Applikation</h1>
  9. {% for post in posts %}
  10. <p>{{ post.notice_title }}</p>
  11. <p>{{ post.notice_text }}</p>
  12. {% endfor %}
  13. </div>
  14. </div>
  15. {% endblock %}