templates/home.html
author nishanth
Tue, 29 Jun 2010 13:01:10 +0530
changeset 65 88a36f434284
parent 23 f57c30096b51
permissions -rw-r--r--
added the required changes in open_quiz view. the design is now final and ready for use

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