|
123456789101112 |
- {% extends "base.html" %}
-
- {% block title %} {{ title }} {% endblock title %}
-
- {% block content %}
- {% for notice in notices %}
- <div class="jumbotron">
- <h1 class="display-6">{{ notice.notice_title }}</h1>
- <p class="lead">{{notice.notice_text}}</p>
- </div>
- {% endfor %}
- {% endblock content %}
|