Add a place for "breadcrumbs" back into the base.html page so
authorDiane Trout <diane@caltech.edu>
Mon, 7 Mar 2011 23:31:51 +0000 (15:31 -0800)
committerDiane Trout <diane@caltech.edu>
Mon, 7 Mar 2011 23:31:51 +0000 (15:31 -0800)
navigation links appear on the started email page

htsworkflow/frontend/templates/base.html

index 22dad4bfea6f13007bfedded02373a82e3ee9800..ed9ffb90c204071b7752c56daf8269701e9a2b61 100644 (file)
@@ -25,7 +25,7 @@
 </head>
 <body>
 <!-- Container -->
-   {% if not is_popup %}
+    {% if not is_popup %}
     
     <div id="header">
         <div id="branding">
         {% block nav-global %}{% endblock %}
     </div>
     {% endif %}
-       {% if messages %}
+    {% block breadcrumbs %}{% endblock %}
+    {% if messages %}
         <ul class="messagelist">{% for message in messages %}<li>{{ message }}</li>{% endfor %}</ul>
-        {% endif %}
-
+    {% endif %}
+        
     <!-- Content -->
     <div id="content" class="{% block coltype %}colM{% endblock %}">
         {% block pretitle %}{% endblock %}