diff options
-rw-r--r-- | chimere/templates/base.html | 2 | ||||
-rw-r--r-- | chimere/views.py | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/chimere/templates/base.html b/chimere/templates/base.html index 149cc71..619aa0b 100644 --- a/chimere/templates/base.html +++ b/chimere/templates/base.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> - <title>{% block title %}Chimère{% endblock %}</title> + <title>{% block title %}{{PROJECT_NAME}}{% endblock %}</title> {% block extra_head %} {% endblock %} </head> diff --git a/chimere/views.py b/chimere/views.py index 10992b8..4dd6462 100644 --- a/chimere/views.py +++ b/chimere/views.py @@ -105,6 +105,7 @@ def get_base_response(area_name=""): if area and area.dynamic_categories else False base_response_dct['JQUERY_JS_URLS'] = settings.JQUERY_JS_URLS base_response_dct['JQUERY_CSS_URLS'] = settings.JQUERY_CSS_URLS + base_response_dct['PROJECT_NAME'] = settings.PROJECT_NAME return base_response_dct, None def getShareUrl(request, area_name='', network=''): |