feedback.html
author nishanth
Mon, 12 Apr 2010 12:08:19 +0530
changeset 12 f57b0a7f24d9
parent 11 334550460bd7
permissions -rw-r--r--
added closing and opening of feedback.

{% 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 %}