feedback.html
author nishanth
Mon, 12 Apr 2010 11:23:27 +0530
changeset 11 334550460bd7
parent 6 057498d12450
permissions -rw-r--r--
added the view event functionality and submitting feedback according to the status .

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