author | nishanth |
Tue, 20 Apr 2010 21:15:18 +0530 | |
changeset 18 | c66b4904ce5a |
parent 11 | afc41af983e5 |
child 23 | f57c30096b51 |
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 /> |
|
11 | 11 |
<a href="/feedback/report/{{admin_key}}">View report of 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
|
12 |
{% endblock %} |