templates/home.html
author nishanth
Wed, 21 Apr 2010 12:11:19 +0530
changeset 29 ea1c0110e989
parent 23 f57c30096b51
permissions -rw-r--r--
fixed the display of question

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