From 934c38a7cd82d64e9f271d6eeb9a0ed9b98ed803 Mon Sep 17 00:00:00 2001 From: Diane Trout Date: Tue, 7 Oct 2008 21:15:41 +0000 Subject: [PATCH] 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 --- htswfrontend/templates/admin/base_site.html | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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 %} -- 2.30.2