templates/feedback.html
author nishanth
Fri, 16 Apr 2010 17:55:16 +0530
changeset 90 d18d31b07553
parent 60 d8cd7e946cde
permissions -rwxr-xr-x
now list attendees shows Male/Female instead of M/F

{% extends "base.html" %}
{% block content %}
	{% if submitted %}
		Your feedback has been successfully submitted.
	{% else %}
		<form action="" method="post">
		{{ form.as_p }}
		<input type="submit" value="submit">
		</form>
	{% endif %}
{% endblock %}