blob: 4d921e1b655981d41cd738c0b9f75b3888aec8e8 (
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
|
{% extends "base.html" %}
{% load static %}
{% block title %} Complete {% endblock %}
{% block nav %}
<nav class="navbar navbar-expand-lg navbar-dark bg-primary fixed-top">
<a class="navbar-brand" href="{% url 'yaksh:index' %}">
<img src="{% static 'yaksh/images/yaksh_banner.png' %}" alt="YAKSH">
</a>
</nav>
{% endblock %}
{% block content %}
<br>
{% if module_id and not paper.course.is_trial %}
<center>
<div class="alert alert-info col-md-8">
Note:- Please Click on the Next button to submit the quiz. Please do not close the browser without clicking Next.
</div>
</center>
{% endif %}
{% csrf_token %}
{% if paper.questions_answered.all or paper.questions_unanswered.all %}
<center>
<div class="col-md-8">
<h3>Submission Status</h3>
<table class="table table-dark table-responsive-sm" >
<thead class="thead-dark">
<tr>
<th> Question</th>
<th> Status </th>
</tr>
</thead>
<tbody class="list">
{% for question in paper.questions.all %}
{% if question in paper.questions_answered.all %}
<tr>
<td> {{ question.summary }} </td>
<td> <span class="badge badge-success">Attempted</span> </td>
{% else %}
<tr>
<td> {{ question }} </td>
<td> <span class="badge badge-warning">Not Attempted</span> </td>
{% endif %}
</tr>
{% endfor %}
</tbody>
</table>
</div>
</center>
{% endif %}
<br><br>
<center class="container">
<h5>
<span class="alert alert-success">{{message}}</span>
</h5>
</center>
<center>
<br>
{% if module_id and not paper.course.is_trial %}
{% if first_unit %}
<a href="{% url 'yaksh:next_unit' course_id module_id learning_unit.id '1' %}" class="btn btn-info btn-lg" id="Next"> Next
<span class="fa fa-step-forward">
</span>
</a>
{% else %}
<a href="{% url 'yaksh:next_unit' course_id module_id learning_unit.id %}" class="btn btn-info btn-lg" id="Next"> Next
<span class="fa fa-step-forward">
</span>
</a>
{% endif %}
{% else %}
<a href="{% url 'yaksh:index' %}" id="home" class="btn btn-primary btn-lg"> Home </a>
{% endif %}
</center>
{% endblock content %}
|