single job without login details page with refresh
[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           <h1><a href="/">UNRES server</a> <small> (beta version with debug)</small></h1>
23
24               Lab. of Simul. of Polym. & Lab. of Mol. Model, Faculty of Chemistry, University of Gdansk
25               <br>
26               Ver.08.09.2017 <span class="fa fa-envelope-o"></span> 
27               cezary.czaplewski<span class="fa fa-at"></span>ug.edu.pl
28
29                 <div class="user-name">
30                         {% if not user.is_anonymous %}
31                                 <strong>Logged as:&nbsp;</strong> {{user}} &nbsp;
32                           {% if user|is_lazy_user %}
33                                 <a href="/logout" title="Log out and delete data"><span class="fa fa-sign-out"></span></a>
34                           {% else %}
35                                 <a href="/logout" title="Log out"><span class="fa fa-sign-out"></span></a>
36                         {% endif %}     
37                         {% endif %}
38                 </div>
39 <!--
40                 {% if user|is_lazy_user %}
41                  <a href="/convert" title="Convert to save your data">Convert to regular user</a>
42                 {% endif %}
43 -->
44         </div>
45
46         {% block content %}
47         {% endblock %}
48
49 </div>
50
51 </body>
52 </html>