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 556B

123456789101112131415161718192021222324
  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 }} {{ post.notice_text }}
  11. <a class="btn btn-info" role="button">delete message</a></p>
  12. {% endfor %}
  13. </div>
  14. </div>
  15. <p><a href="{% url 'new' %}" class="btn btn-info" role="button">Neue Nachricht</a></p>
  16. {% endblock %}