310cfefaba6d12abb1d2e836d5b0e8a0f9880664
[django_unres.git] / django_simple / todo / templates / base.html
1 {% load staticfiles %}
2 {% load i18n lazysignup_tags %}
3 <!DOCTYPE html>
4 <html>
5 <head>
6         <title>UNRES - Job lists</title>
7
8         <link rel="stylesheet" type="text/css" href="{% static 'bootstrap/css/bootstrap.min.css' %}">
9         <link rel="stylesheet" type="text/css" href="{% static 'font-awesome/css/font-awesome.min.css' %}">
10         <link rel="stylesheet" type="text/css" href="{% static 'style.css' %}">
11         <style>
12         th,td {
13            padding:5px;
14         }
15         </style>
16 </head>
17 <body>
18
19 <div class="col-sm-6 col-sm-offset-3">
20         
21         <div class="page-header">
22          {% if not user|is_lazy_user %}
23           <h1><a href="/">UNRES server</a> <small> (beta version with debug)</small></h1>
24          {% else %}
25           <h1>UNRES server <small> (beta version with debug)</small></h1>          
26          {% endif %}
27               Lab. of Simul. of Polym. & Lab. of Mol. Model, Faculty of Chemistry, University of Gdansk
28               <br>
29               Ver.20.11.2017 <span class="fa fa-envelope-o"></span> 
30               cezary.czaplewski<span class="fa fa-at"></span>ug.edu.pl
31
32                 <div class="user-name">
33                         {% if not user.is_anonymous %}
34
35                           {% if user|is_lazy_user %}
36                           <strong>Return to job submission page&nbsp;</strong>&nbsp;
37                           <a href="/logout" title="next job"><span class="fa fa-sign-out"></span></a>
38                           {% else %}
39                                 <strong>Logged as:&nbsp;</strong> {{user}} &nbsp;                         
40                                 <a href="/logout" title="Log out"><span class="fa fa-sign-out"></span></a>
41                           {% endif %}   
42                         {% endif %}
43                 </div>
44 <!--
45                 {% if user|is_lazy_user %}
46                  <a href="/convert" title="Convert to save your data">Convert to regular user</a>
47                 {% endif %}
48 -->
49         </div>
50
51         {% block content %}
52         {% endblock %}
53
54 </div>
55
56 </body>
57 </html>