summaryrefslogtreecommitdiff
path: root/yaksh/templates/yaksh/module.html
blob: 2ce54420e69777ab06191193299a0d88c19d2cf3 (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
{% load custom_filters %}
<html>
<link rel="stylesheet" href="../static/css/bootstrap.css">
<link rel="stylesheet" href="../static/css/bootstrap.min.css">
<link rel="stylesheet" href="../static/css/offline.css">
<script src="../static/js/jquery-1.9.1.min.js"></script>
<script src="../static/js/bootstrap.min.js"></script>
<script src="https://vjs.zencdn.net/6.9.0/video.js"></script>
{% block pagetitle %} {{module.name}} {% endblock %}
<nav class="navbar navbar-inverse navbar-fixed-top">
    <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 lesson in lessons %}
                    <a href="{{lesson.name|replace_spaces}}/{{lesson.name|replace_spaces}}.html" target="_blank" class="list-group-item">
                        {{lesson.name}}
                    </a>
                    {% 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>
</html>