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

{% block title %} Edit Activity {% endblock %}
{% block heading %}
	<h1 class="subheader"> Edit Activity: </h1>
{% endblock %}
{% block content %}
	<form method="post">
		{% csrf_token %}
		{{ form.as_p }}
		<div class="separator-bar"></div>
		<input type="submit" value="Save New Activity" class="action-button">
	</form>
{% endblock %}