blob: 3b0f82c12f6c97b7d86bc323692849620d266f15 (
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
80
81
82
83
84
85
86
87
88
89
90
|
{% extends "base.html" %}
{% block nav %}
<nav class="navbar navbar-expand-sm navbar-dark bg-primary fixed-top">
<a class="navbar-brand" href="{{ URL_ROOT }}/exam/">
<img src="{{ URL_ROOT }}/static/yaksh/images/yaksh_banner.png" alt="YAKSH">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarColor01" aria-controls="navbarColor01" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarColor01">
<ul class="navbar-nav mr-auto">
<li class="nav-item"><a class="nav-link" href="{{ URL_ROOT }}/exam/manage/questions">Questions</a></li>
<li class="nav-item"><a class="nav-link" href="{{ URL_ROOT }}/exam/manage/courses">Courses</a></li>
<li class="nav-item"><a class="nav-link" href="{{ URL_ROOT }}/exam/manage/monitor">Monitor</a></li>
<li class="nav-item"><a class="nav-link" href="{{ URL_ROOT }}/exam/manage/gradeuser">Grade User</a></li>
<li class="nav-item"><a class="nav-link" href="{{ url_root }}/exam/manage/grader"> Regrade </a></li>
</ul>
<ul class="navbar-nav ml-auto">
<li class="nav-item dropdown my-lg-0" style="font-size: 1.2rem">
<a class="dropdown-toggle nav-link" id="user_dropdown" data-toggle="dropdown" href="#">{{user.get_full_name|title}}
</a>
<div class="dropdown-menu dropdown-menu-right">
<a class="dropdown-item" href="{{ URL_ROOT }}/exam/editprofile/">
<i class="fa fa-user"></i> My Profile
</a>
<div class="dropdown-divider"></div>
{% if user.profile.is_moderator %}
<a class="dropdown-item" href="{{URL_ROOT}}/exam/toggle_moderator/"><i class="fa fa-exchange"></i>
Switch To Student
</a>
<div class="dropdown-divider"></div>
{% endif %}
<a class="dropdown-item" href="{{ URL_ROOT }}/exam/reset/changepassword/">
<i class="fa fa-key"></i> Change Password
</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" id="user_logout" href="{{URL_ROOT}}/exam/logout/">
<i class="fa fa-sign-out"></i> Logout
</a>
</div>
</li>
</ul>
</div>
</nav>
<!-- iframe div for video embed -->
<div id="iframe_div" style="display: none;">
<div class="embed-responsive embed-responsive-16by9" style=" position: relative;">
<iframe class="embed-responsive-item" id="video_frame" width="800" height="500" allowfullscreen>
</iframe>
<div style="width: 80px; height: 80px; position: absolute; opacity: 0; right: 0px; top: 0px;">
</div>
</div>
</div>
<!-- end iframe div -->
<!-- Dialog to video embed -->
<div id="dialog_iframe" title="Embed Video URL" style="display: none;">
<label>Enter embed url:</label>
<input id="url" name="url" type="text" required="true">
<input type="button" id="submit_info" name="submit_info" class="btn" value="Submit" />
<div id="error_div" style="display: none;">
<b> Please enter URL</b>
</div>
<div id="copy_div">
<br>
<label>Paste HTML to embed in website:</label>
<textarea rows="5" cols="35" id="html_text"></textarea>
<br>
<a class="btn btn-default" id="copy" data-toggle="tooltip" title="Copy to Clipboard">
<i class="fa fa-clipboard" aria-hidden="true"></i>
</a>
</div>
</div>
<!-- end dialog -->
{% endblock %}
{% block content %}
<div class="container">
{% block main %}
{% endblock %}
</div>
{% endblock %}
{% block footer %}
{% endblock %}
|