templates/feedback.html
author nishanth
Thu, 15 Apr 2010 19:19:08 +0530
changeset 57 d321a507fc26
parent 55 53ff84c9192d
child 60 d8cd7e946cde
permissions -rw-r--r--
updated view_event page .
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
     1
{% extends "base.html" %}
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
     2
{% block content %}
57
d321a507fc26 updated view_event page .
nishanth
parents: 55
diff changeset
     3
Feedback on Day {{event.feedback_status}} of {{event.title}} at {{event.venue}}<br /><br />
14
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
     4
	{% if submitted %}
57
d321a507fc26 updated view_event page .
nishanth
parents: 55
diff changeset
     5
		Your feedback has been successfully submitted.<br />
d321a507fc26 updated view_event page .
nishanth
parents: 55
diff changeset
     6
		<a href="/reg/event/view/{{event.key}}">Return to the workshop page</a>
14
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
     7
	{% else %}
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
     8
		<form action="" method="post">
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
     9
		{{ form.as_p }}
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
    10
		<input type="submit" value="submit">
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
    11
		</form>
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
    12
	{% endif %}
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
    13
{% endblock %}