summaryrefslogtreecommitdiff
path: root/templates/exam/index.html
blob: 5470cf5a905211105ba919e2c420bd0b12a66915 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<p> Welcome to the Examination. </p>
<br></br>

{% if question_list %}
    <ul> 
    {% for question in question_list %}
        <li> <a href="/exam/{{ question.id }}/">{{ question.summary }} </a> </li>
    {% endfor %}
    </ul>
{% else %}
    <p> Lucky you, no questions available.</p>
{% endif %}