summaryrefslogtreecommitdiff
path: root/testapp/templates/exam/quizzes_user.html
blob: af2d98a26d55403879b38f605c5f34243539ba73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "user.html" %}


{% block subtitle %}Available Quizzes{% endblock %}

{% block css %}
<link rel="stylesheet" href="{{ URL_ROOT }}/static/exam/css/question_quiz.css" type="text/css" />
{% endblock %}

{% block manage %}
    {% if not quizzes %}
        <center><h4>No active quizzes for you</h4></center>
    {% endif %}
    {% for paper in quizzes %}
     <a href="{{ URL_ROOT }}/exam/start/{{paper.id}}">{{ paper.quiz.description }}</a><br>
    {% endfor %}
{% endblock %}