From cb8c569b07d27ca2306138fb150e49dda3a23deb Mon Sep 17 00:00:00 2001 From: Charles Bennett Date: Thu, 19 Oct 2023 12:31:27 -0400 Subject: [PATCH] Add settings for data720. --- .../appstore/settings/eduhelx-data720_settings.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 appstore/appstore/settings/eduhelx-data720_settings.py diff --git a/appstore/appstore/settings/eduhelx-data720_settings.py b/appstore/appstore/settings/eduhelx-data720_settings.py new file mode 100644 index 00000000..90771480 --- /dev/null +++ b/appstore/appstore/settings/eduhelx-data720_settings.py @@ -0,0 +1,14 @@ +from .base import * +from product.configuration import ProductSettings, ProductColorScheme, ProductLink + +# TODO remove Application brand once the new frontend is complete and +# the django templates in core are removed. +APPLICATION_BRAND = "eduhelx-dev" + +PRODUCT_SETTINGS = ProductSettings( + brand="eduhelx-dev", + title="EduHeLx Dev", + logo_url="/static/images/eduhelx/logo.png", + color_scheme=ProductColorScheme("#666666", "#e6e6e6"), #TBD + links=[], +)