summaryrefslogtreecommitdiff
path: root/testapp/templates/manage.html
blob: a2941b064724278455eb00edc0cbd46f90fc051b (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
{% extends "base.html" %}

{% block title %}Manage{% endblock title %}

{% block content %}
<div class="container">
   <div class="content">
      <div class="page-header">
         <font size=6><strong>Online Test</font></strong>
	<button class="btn pull-right" type="submit" onClick='location.replace("{{URL_ROOT}}/exam/complete/");'>Log out</button>
      </div>

      <div class=row>
          <div class=span10 style="overflow:auto">
             <h3><center>{% block subtitle %} {% endblock %}</center></h3><br>
	     {% block manage %}
	     {% endblock %}
          </div>
  	    <style type='text/css'>
	    .content .span4 
	    {
        	min-height: 500px;
            }
	    .textarea
	    {
		width: 10px;
	    }
	    </style>
          <div class="span4">
               <h5>Manage</h5>
               <ul>
               <li><a href="{{ URL_ROOT }}/exam/manage/questions">Questions</a></li>
               <li><a href="{{ URL_ROOT }}/exam/manage/showquiz">Quizzes</a></li>
               <li><a href="{{ URL_ROOT }}/exam/manage/gradeuser">Grade User</a></li>
               <li><a href="{{ URL_ROOT }}/exam/manage/monitor">Monitor</a></li>
               </ul>
          </div>
      </div>
   </div>
   <footer>
      <p>&copy; FOSSEE group, IIT Bombay</p>
   </footer>
</div> <!-- /container -->
{% endblock content %}