Add pages to show information about a particular flowcell.
[htsworkflow.git] / htsworkflow / frontend / templates / base.html
1 {% load i18n %}<?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
3     "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
4 <html xmlns="http://www.w3.org/1999/xhtml"
5       version="XHTML+RDFa 1.0"
6       xmlns:xml="http://www.w3.org/1999/xhtml"
7       xmlns:dc="http://purl.org/dc/elements/1.1/"
8       xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
9       xmlns:libns="http://jumpgate.caltech.edu/wiki/LibraryOntology#"
10       xml:lang="en"
11 >
12 <!--base.html-->
13 <head>
14     <title>{% block title %}{{ app_name }} - {{ page_name }}{% endblock %}</title>
15
16 {% block additional_css %}
17     {% load adminmedia %}
18     {% if LANGUAGE_BIDI %}<link rel="stylesheet" type="text/css" href="{% block stylesheet_rtl %}{% admin_media_prefix %}css/rtl.css{% endblock %}" />{% endif %}
19     {% block extrastyle %}{% endblock %}
20     {% block extrahead %}{% endblock %}
21     {% block blockbots %}<meta name="robots" content="NONE,NOARCHIVE" />{% endblock %}
22     <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/data-browse-index.css" />
23 {% endblock %}
24
25 </head>
26 <body>
27 <!-- Container -->
28     {% if not is_popup %}
29     
30     <div id="header">
31         <div id="branding">
32         {% block branding %}{% endblock %}
33         </div>
34         <div id="user-tools">
35         {% if user.is_authenticated %}
36         {% trans 'Welcome,' %} <strong>{% firstof user.first_name user.username %}</strong>. {% block userlinks %}{% url django-admindocs-docroot as docsroot %}{% if docsroot %}<a href="{{ docsroot }}">{% trans 'Documentation' %}</a> / {% endif %}<a href="/admin/password_change/">{% trans 'Change password' %}</a> / <a href="/admin/logout/">{% trans 'Log out' %}</a>{% endblock %} 
37         {% else %}
38         <a href="/admin/login/">{% trans 'Log in' %}</a>
39         {% endif %}
40         </div>
41         {% block nav-global %}{% endblock %}
42     </div>
43     {% endif %}
44     {% block breadcrumbs %}{% endblock %}
45     {% if messages %}
46         <ul class="messagelist">{% for message in messages %}<li>{{ message }}</li>{% endfor %}</ul>
47     {% endif %}
48         
49     <!-- Content -->
50     <div id="content" class="{% block coltype %}colM{% endblock %}">
51         {% block pretitle %}{% endblock %}
52         {% block content_title %}{% if title %}<h1>{{ title }}</h1>{% endif %}{% endblock %}
53         {% block content %}
54         {% block object-tools %}{% endblock %}
55         {{ content }}
56         {% endblock %}
57         {% block sidebar %}{% endblock %}
58         <br class="clear" />
59     </div>
60     <!-- END Content -->
61
62     {% block footer %}<div id="footer"></div>{% endblock %}
63 <!-- END Container -->
64 </body>
65 </html>