announcement-edit.html 381 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
{% extends 'base.html' %}
{% load static %}

{% block page-title %}Edit Announcement{% endblock %}

{% block heading %}<h1>Edit announcement:</h1>{% endblock %}

{% block content %}
<form method="post">
    {% csrf_token %}
    <table>
    {{ form.as_table }}
    </table><br><br>
    <input class="button" type="submit" value="Save Changes to Announcement">
</form>
{% endblock %}