{% extends 'base.html' %} {% load static %} {% block title %} Add Announcement {% endblock %} {% block content %}

Add a new announcement:

{% csrf_token %} {# iterate through fields in the form #} {% for field in form%} {{ field.label }}: {{ field }}

{% endfor %}
{% endblock %}