blob: b062159917dd37d58bbc45b2e398f37b9a96593c (
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
|
{% load custom_filters %}
<html>
<head>
<link rel="stylesheet" href="../static/css/bootstrap.min.css">
<link rel="stylesheet" href="../static/css/offline.css">
<title>
{% block pagetitle %} {{module.name}} {% endblock %}
</title>
</head>
<body>
<nav class="navbar bg-dark navbar-dark">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">
<img src="../static/images/yaksh_banner.png" alt="YAKSH">
</img>
</a>
</div>
</div>
</nav>
<div class="container" style="margin-top:50px">
<h1>
<center>
{% block subtitle %}
{{course.name}}
{% endblock %}
</center>
</h1>
<hr>
{% block content %}
<center><h2>{{module.name}}</h2></center>
<table class="table module">
<tr>
<td>
<h4><strong>Lessons (Click on lesson name to open lesson)
</strong></h4>
<ul class="list-group">
{% for unit in units %}
{% if unit.type == 'lesson' %}
<a href="{{unit.lesson.name|replace_spaces}}/{{unit.lesson.name|replace_spaces}}.html" target="_blank" class="list-group-item">
{{unit.lesson.name}}
</a>
{% else %}
<a href="{{unit.quiz.description|replace_spaces}}/{{unit.quiz.description|replace_spaces}}.html" target="_blank" class="list-group-item">
{{unit.quiz.description}}
</a>
{% endif %}
{% endfor %}
</ul>
</td>
<td>
{{module.html_data|safe}}
</td>
</tr>
</table>
{% endblock %}
</div>
<footer class="footer" id="footer_div">
<div class="container">
<p align="center">Developed by FOSSEE group, IIT Bombay</p>
</div>
</footer>
</body>
<script src="../static/js/jquery-3.3.1.min.js"></script>
<script src="../static/js/bootstrap.min.js"></script>
<script src="https://vjs.zencdn.net/6.9.0/video.js"></script>
</html>
|