templates/home.html
author nishanth
Tue, 20 Apr 2010 23:29:44 +0530
changeset 23 f57c30096b51
parent 6 8929b82c1dbb
permissions -rw-r--r--
added the link on home to attempt quiz

{% 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 %}