added feedback.html on main repo .
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/list_feedbacks.html Thu Apr 15 23:40:14 2010 +0530
@@ -0,0 +1,6 @@
+{% extends "base.html" %}
+{% block content %}
+{% for feed in feeds %}
+ {{ feed }}<br />
+{% endfor %}
+{% endblock %}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/login.html Thu Apr 15 23:40:14 2010 +0530
@@ -0,0 +1,7 @@
+{% extends "base.html" %}
+{% block content %}
+<form action="" method="post">
+{{ form.as_p }}
+<input type="submit" value="Login">
+</form>
+{% endblock %}
--- a/templates/feedback.html Thu Apr 15 22:59:45 2010 +0530
+++ b/templates/feedback.html Thu Apr 15 23:40:14 2010 +0530
@@ -1,9 +1,7 @@
{% extends "base.html" %}
{% block content %}
-Feedback on Day {{event.feedback_status}} of {{event.title}} at {{event.venue}}<br /><br />
{% if submitted %}
- Your feedback has been successfully submitted.<br />
- <a href="/reg/event/view/{{event.key}}">Return to the workshop page</a>
+ Your feedback has been successfully submitted.
{% else %}
<form action="" method="post">
{{ form.as_p }}