templates/create_event.html
author nishanth
Thu, 01 Jul 2010 16:44:17 +0530
changeset 84 08af9e4ada78
parent 9 601057af86c2
permissions -rw-r--r--
modified the link in templates to the correct one and fixed a typo in view
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9
601057af86c2 implemented event create
nishanth
parents:
diff changeset
     1
{% extends 'base.html' %}
601057af86c2 implemented event create
nishanth
parents:
diff changeset
     2
{% block content %}
601057af86c2 implemented event create
nishanth
parents:
diff changeset
     3
Start by entering these details to create the event.
601057af86c2 implemented event create
nishanth
parents:
diff changeset
     4
<form action="" method="post">
601057af86c2 implemented event create
nishanth
parents:
diff changeset
     5
		{{form.as_p}}
601057af86c2 implemented event create
nishanth
parents:
diff changeset
     6
<input type="submit" value="Create">
601057af86c2 implemented event create
nishanth
parents:
diff changeset
     7
</form>
601057af86c2 implemented event create
nishanth
parents:
diff changeset
     8
{% endblock %}