summaryrefslogtreecommitdiff
path: root/yaksh/templates/exam.html
blob: 4fd83dd89c2e3bf6626df558836554b7975c8017 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{% extends "base.html" %}
{% load custom_filters %}
{% block css%}
    <link rel="stylesheet" href="{{ URL_ROOT }}/static/yaksh/css/dashboard.css" type="text/css" />
{% endblock %}
{% block nav %}
    <nav class="navbar navbar-fixed-top navbar-inverse">
      <div class="container">
        <div class="navbar-header">
              <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
                  <span class="icon-bar"></span>
                  <span class="icon-bar"></span>
                  <span class="icon-bar"></span>
              </button>
          <a class="navbar-brand" href="#"> Yaksh </a>
        </div>
        <div class= "collapse navbar-collapse" id="navbar">
          <form id="logout" action="{{URL_ROOT}}/exam/quit/{{ paper.attempt_number }}/{{module.id}}/{{ paper.question_paper.id }}/{{course.id}}/" method="post" class="pull-right">
            {% csrf_token %}
            <ul class="nav navbar-nav navbar">
              <li style="padding: 10px"><button class="btn btn-danger btn-sm" type="submit" name="quit">
                {% if paper.questions_unanswered.all %}
                  Quit {{ quiz_type }}
                {% else %}
                  Finish {{ quiz_type }}
                {% endif %}
              <span class="glyphicon glyphicon-off"></span></button></li>
            </ul>
          </form>
          <div class="time-div" id="time_left"></div>
        </div><!-- /.navbar -->
      </div><!-- /.container -->
    </nav><!-- /.navbar -->
{% endblock %}
{% block content %}
<div class="container-fluid">
    <div class="col-sm-3 col-md-2 sidebar">
        <p> Question Navigator </p>
        <ul class="pagination pagination-sm">
            {% for qid in paper.get_all_ordered_questions %}
                {%if paper.question_paper.quiz.allow_skip %}
                {% if qid in paper.get_questions_unanswered %}
                {% if qid.id == question.id %}
                <li class="active"><a style="width:25%" href="#"data-toggle="tooltip"
                    title="{{ qid.description|striptags }}"
                    onclick="call_skip('{{ URL_ROOT }}/exam/{{ question.id }}/skip/{{ qid.id }}/{{ paper.attempt_number }}/{{ module.id }}/{{ paper.question_paper.id }}/{{course.id}}/')">{{ forloop.counter }}</a></li>
                {% else %}
                <li><a style="width:25%" href="#" data-toggle="tooltip" title="{{ qid.description|striptags }}"
                    onclick="call_skip('{{ URL_ROOT }}/exam/{{ question.id }}/skip/{{ qid.id }}/{{ paper.attempt_number }}/{{ module.id }}/{{ paper.question_paper.id }}/{{course.id}}/')">{{ forloop.counter }}</a></li>
                {% endif %}
                {% endif %}
                {% if qid in paper.get_questions_answered %}
                <li><a style="background-color:#B4B8BA; width:25%" href="#" data-toggle="tooltip"
                onclick="call_skip('{{ URL_ROOT }}/exam/{{ question.id }}/skip/{{ qid.id }}/{{ paper.attempt_number }}/{{ module.id }}/{{ paper.question_paper.id }}/{{course.id}}/')"
                title="{{ qid.description }}">{{ forloop.counter }}</a></li>
                {% endif %}
                {% else %}
                {% if qid.id == question.id %}
                <li class="active"><a style="width:25%" data-toggle="tooltip" title="{{ qid.description|striptags }}">{{ forloop.counter }}</a></li>
                {% else %}
                <li  class="disabled"><a style="width:25%" data-toggle="tooltip" title="{{ qid.description|striptags }}">{{ forloop.counter }}</a></li>
                {% endif %}
                {% endif %}
                {% endfor %}
            </ul>
            <p>Question(s) left: <b>{{ paper.questions_left }}</b></p>
            <br><br><br>
            {% block learning_units %}
            {% endblock %}
        </div>
        <div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main">
                <div class="row">
                {% block main %}
                {% endblock %}
            </div>
        </div>
        </div>

{% endblock %}