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.

Notice.html 314B

5 years ago
123456789101112131415161718
  1. {% extends 'posts/base.html'%}
  2. {% block title %}
  3. News
  4. {% endblock %}
  5. {% block content %}
  6. <div class="container">
  7. {% for notice in notices %}
  8. <h3>{{ notice.notice_title }}</h3>}}
  9. <P> {{ notice.notice_text }}<p>
  10. {% endfor %}
  11. </div>}
  12. {% endblock %}