From: Diane Trout Date: Tue, 7 Oct 2008 21:15:41 +0000 (+0000) Subject: I modified the admin base site login page slightly to be less X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=commitdiff_plain;h=934c38a7cd82d64e9f271d6eeb9a0ed9b98ed803 I modified the admin base site login page slightly to be less stanford specific. It would be nice if there was someway of passing variables to the admin site templates so we could provide per site branding without having to commit the site customization to the repository --- diff --git a/htswfrontend/templates/admin/base_site.html b/htswfrontend/templates/admin/base_site.html index f58c279..c212302 100644 --- a/htswfrontend/templates/admin/base_site.html +++ b/htswfrontend/templates/admin/base_site.html @@ -1,10 +1,16 @@ {% extends "admin/base.html" %} {% load i18n %} -{% block title %}{{ title }} | {% trans 'dev site admin' %}{% endblock %} +{% block title %} +{{ title }}|{%trans "dev site admin" %} +{% endblock %} {% block branding %} -

{% trans 'STANFORD ENCODE - Dev Site' %}

+

+ {%block sitename %} + {% trans 'HTS Workflow Dev Server' %} + {%endblock%} +

{% endblock %} {% block nav-global %}{% endblock %}