templates/home.html
author nishanth
Wed, 30 Jun 2010 10:33:03 +0530
changeset 72 665287ab8e3a
parent 23 f57c30096b51
permissions -rw-r--r--
now the checking for admin key is done via urls

{% extends 'base.html' %}
{% block content %}
<h3>{{event.title}}</h3>
{% if can_submit_feedback %}
    <a href="/feedback/submit">Submit Feedback</a><br />
{% endif %}
{% if can_take_quiz %}
<a href="/quiz">Attempt quiz</a><br />
{% endif %}
{% endblock %}