processing of wham pdb only for task.type=='remd'
[django_unres.git] / django_simple / todo / templates / base.html
1 {% load staticfiles %}
2 <!DOCTYPE html>
3 <html>
4 <head>
5         <title>UNRES - Job lists</title>
6
7         <link rel="stylesheet" type="text/css" href="{% static 'bootstrap/css/bootstrap.min.css' %}">
8         <link rel="stylesheet" type="text/css" href="{% static 'font-awesome/css/font-awesome.min.css' %}">
9         <link rel="stylesheet" type="text/css" href="{% static 'style.css' %}">
10         <style>
11         th,td {
12            padding:5px;
13         }
14         </style>
15 </head>
16 <body>
17
18 <div class="col-sm-6 col-sm-offset-3">
19         
20         <div class="page-header">
21           <h1><a href="/">UNRES server</a> <small> (beta version)</small></h1>
22
23                 <div class="user-name">
24                         {% if not user.is_anonymous %}
25                                 <strong>Logged as:&nbsp;</strong> {{user}} &nbsp;
26                                 <a href="/logout" title="Log out"><span class="fa fa-sign-out"></span></a>
27                         {% endif %}
28                 </div>
29         </div>
30
31         {% block content %}
32         {% endblock %}
33
34 </div>
35
36 </body>
37 </html>