Skip to content
Snippets Groups Projects
Commit e5cb06cb authored by Dennis Ahrens's avatar Dennis Ahrens
Browse files

Close #7 - settings only once.

parent b4c211e1
Branches
Tags
No related merge requests found
...@@ -2,3 +2,15 @@ ...@@ -2,3 +2,15 @@
# piwi stuff # piwi stuff
PIWIK_URL = 'piwik.it.hs-hannover.de' PIWIK_URL = 'piwik.it.hs-hannover.de'
PIWIK_SITE_ID = None PIWIK_SITE_ID = None
# setting the color scheme for the default compiled style and base html
# available are:
#
# 'service' - default, central service yellow - rgb(255, 210, 0)
# 'zsw' - mint for ZSW - rgb(70, 180, 140)
# 'f1' - light blue for faculty 1, "Elektro- und Informationstechnik" - rgb(30, 190, 235)
# 'f2' - green for faculty 2, "Maschinenbau und Bioverfahrenstechnik" - rgb(150, 190, 0)
# 'f3' - light blue for faculty 3, "Medien, Information und Design" - rgb(255, 165, 0)
# 'f4' - light blue for faculty 4, "Wirtschaft und Informatik" - rgb(220, 50, 5)
# 'f5' - light blue for faculty 5, "Diakonie, Gesundheit und Soziales" - rgb(210, 60, 150)
COLOR_SCHEME = 'service'
from django.conf import settings
# setting the color scheme for the default compiled style and base html
# available are:
#
# 'service' - default, central service yellow - rgb(255, 210, 0)
# 'zsw' - mint for ZSW - rgb(70, 180, 140)
# 'f1' - light blue for faculty 1, "Elektro- und Informationstechnik" - rgb(30, 190, 235)
# 'f2' - green for faculty 2, "Maschinenbau und Bioverfahrenstechnik" - rgb(150, 190, 0)
# 'f3' - light blue for faculty 3, "Medien, Information und Design" - rgb(255, 165, 0)
# 'f4' - light blue for faculty 4, "Wirtschaft und Informatik" - rgb(220, 50, 5)
# 'f5' - light blue for faculty 5, "Diakonie, Gesundheit und Soziales" - rgb(210, 60, 150)
COLOR_SCHEME = getattr(settings, 'HSHASSETS_COLOR_SCHEME', 'service')
from django.conf import settings from django.conf import settings
from hshassets.settings import COLOR_SCHEME from hshassets.app_settings import COLOR_SCHEME
from importlib import import_module from importlib import import_module
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment