templates/feedback.html
author nishanth
Thu, 15 Apr 2010 18:57:55 +0530
changeset 55 53ff84c9192d
parent 14 cd6911eaac2c
child 57 d321a507fc26
permissions -rw-r--r--
added a model in feedback for logging users who have already submitted feedback and made changes in corresponding views .
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 %}
55
53ff84c9192d added a model in feedback for logging users who have already submitted feedback and made changes in corresponding views .
nishanth
parents: 14
diff changeset
     3
Feedback on Day {{event.feedback_status}} of {{event.title}} at {{event.venue}}
14
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
     4
	{% if submitted %}
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
     5
		Your feedback has been successfully submitted.
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
     6
	{% else %}
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
     7
		<form action="" method="post">
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
     8
		{{ form.as_p }}
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
     9
		<input type="submit" value="submit">
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
    10
		</form>
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
    11
	{% endif %}
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
    12
{% endblock %}