templates/submit_feedback.html
author nishanth
Thu, 01 Jul 2010 16:20:17 +0530
changeset 81 848c009b8a60
parent 5 9a671f3eb24c
permissions -rw-r--r--
now topic name is displayed instead of topic number in list_questions page
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5
9a671f3eb24c created the add feedback functionality
nishanth
parents:
diff changeset
     1
{% extends "base.html" %}
9a671f3eb24c created the add feedback functionality
nishanth
parents:
diff changeset
     2
{% block content %}
9a671f3eb24c created the add feedback functionality
nishanth
parents:
diff changeset
     3
	{% if submitted %}
9a671f3eb24c created the add feedback functionality
nishanth
parents:
diff changeset
     4
		Your feedback has been successfully submitted.
9a671f3eb24c created the add feedback functionality
nishanth
parents:
diff changeset
     5
                {% else %}
9a671f3eb24c created the add feedback functionality
nishanth
parents:
diff changeset
     6
                Submit feedback for day{{event.feedback_status}} of {{event.title}}<br /> 
9a671f3eb24c created the add feedback functionality
nishanth
parents:
diff changeset
     7
		<form action="" method="post">
9a671f3eb24c created the add feedback functionality
nishanth
parents:
diff changeset
     8
		{{ form.as_p }}
9a671f3eb24c created the add feedback functionality
nishanth
parents:
diff changeset
     9
		<input type="submit" value="submit">
9a671f3eb24c created the add feedback functionality
nishanth
parents:
diff changeset
    10
		</form>
9a671f3eb24c created the add feedback functionality
nishanth
parents:
diff changeset
    11
	{% endif %}
9a671f3eb24c created the add feedback functionality
nishanth
parents:
diff changeset
    12
{% endblock %}