Construct unit tests for inventory/hard disk long term storage component.
[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       xmlns:invns="http://jumpgate.caltech.edu/wiki/InventoryOntology#"
11       xml:lang="en"
12 >
13 <!--base.html-->
14 <head>
15     <title>{% block title %}{{ app_name }} - {{ page_name }}{% endblock %}</title>
16
17 {% block additional_css %}
18     {% load adminmedia %}
19     {% if LANGUAGE_BIDI %}<link rel="stylesheet" type="text/css" href="{% block stylesheet_rtl %}{% admin_media_prefix %}css/rtl.css{% endblock %}" />{% endif %}
20     {% block extrastyle %}{% endblock %}
21     {% block extrahead %}{% endblock %}
22     {% block blockbots %}<meta name="robots" content="NONE,NOARCHIVE" />{% endblock %}
23     <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/data-browse-index.css" />
24 {% endblock %}
25
26 </head>
27 <body>
28 <!-- Container -->
29     {% if not is_popup %}
30     
31     <div id="header">
32         <div id="branding">
33         {% block branding %}{% endblock %}
34         </div>
35         <div id="user-tools">
36         {% if user.is_authenticated %}
37         {% 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 %} 
38         {% else %}
39         <a href="/admin/login/">{% trans 'Log in' %}</a>
40         {% endif %}
41         </div>
42         {% block nav-global %}{% endblock %}
43     </div>
44     {% endif %}
45     {% block breadcrumbs %}{% endblock %}
46     {% if messages %}
47         <ul class="messagelist">{% for message in messages %}<li>{{ message }}</li>{% endfor %}</ul>
48     {% endif %}
49         
50     <!-- Content -->
51     <div id="content" class="{% block coltype %}colM{% endblock %}">
52         {% block pretitle %}{% endblock %}
53         {% block content_title %}{% if title %}<h1>{{ title }}</h1>{% endif %}{% endblock %}
54         {% block content %}
55         {% block object-tools %}{% endblock %}
56         {{ content }}
57         {% endblock %}
58         {% block sidebar %}{% endblock %}
59         <br class="clear" />
60     </div>
61     <!-- END Content -->
62
63     {% block footer %}<div id="footer"></div>{% endblock %}
64 <!-- END Container -->
65 </body>
66 </html>