templates/admin.html
author nishanth
Tue, 20 Apr 2010 01:31:45 +0530
changeset 7 dfedb369f32e
child 10 7535305b1104
permissions -rw-r--r--
first fixed on the urls and then gave the admin_key in settings and then created main admin page.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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 %}