author | nishanth |
Tue, 20 Apr 2010 09:29:40 +0530 | |
changeset 10 | 7535305b1104 |
parent 7 | dfedb369f32e |
child 11 | afc41af983e5 |
permissions | -rw-r--r-- |
7
dfedb369f32e
first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents:
diff
changeset
|
1 |
{% extends 'base.html' %} |
dfedb369f32e
first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents:
diff
changeset
|
2 |
{% block content %} |
dfedb369f32e
first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents:
diff
changeset
|
3 |
<h3>{{event.title}}</h3> |
dfedb369f32e
first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents:
diff
changeset
|
4 |
{% ifequal event.feedback_status "0" %} |
dfedb369f32e
first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents:
diff
changeset
|
5 |
<a href="/feedback/open/{{admin_key}}">Open feedback</a> |
dfedb369f32e
first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents:
diff
changeset
|
6 |
{% else %} |
dfedb369f32e
first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents:
diff
changeset
|
7 |
<a href="/feedback/close/{{admin_key}}">Close feedback for day{{event.feedback_status}}</a> |
dfedb369f32e
first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents:
diff
changeset
|
8 |
{% endifequal %} |
10 | 9 |
<br /><br /> |
10 |
<a href="/feedback/list/{{admin_key}}">View the feedbacks submitted</a><br /> |
|
7
dfedb369f32e
first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents:
diff
changeset
|
11 |
{% endblock %} |