added feedback.html on main repo .
authornishanth
Thu, 15 Apr 2010 23:40:14 +0530
changeset 60 d8cd7e946cde
parent 59 01638380207c
child 61 4a23f99f26f9
added feedback.html on main repo .
.hgignore
__init__.py
feedback/__init__.py
feedback/admin.py
feedback/forms.py
feedback/models.py
feedback/site/__init__.py
feedback/site/urls.py
feedback/tests.py
feedback/views.py
list_feedbacks.html
login.html
quiz/__init__.py
quiz/models.py
quiz/tests.py
quiz/views.py
reg/__init__.py
reg/admin.py
reg/events.py
reg/forms.py
reg/management/__init__.py
reg/management/commands/__init__.py
reg/management/commands/seed_db.py
reg/models.py
reg/site/__init__.py
reg/site/urls.py
reg/tests.py
reg/utils.py
reg/views.py
settings.py
templates/feedback.html
urls.py
--- /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 }}