| author | nishanth |
| Tue, 20 Apr 2010 02:28:09 +0530 | |
| changeset 9 | 601057af86c2 |
| parent 7 | dfedb369f32e |
| child 10 | 7535305b1104 |
| 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 %}
|
|
dfedb369f32e
first fixed on the urls and then gave the admin_key in settings and then created main admin page.
nishanth
parents:
diff
changeset
|
9 |
{% endblock %}
|