diff --git a/hshassets/static/hshassets/img/favicon.ico b/hshassets/static/hshassets/img/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..58fba12ae945f181d935c3875bcf2070c6b16258 Binary files /dev/null and b/hshassets/static/hshassets/img/favicon.ico differ diff --git a/hshassets/templates/hshassets/includes/default_footer.html b/hshassets/templates/hshassets/includes/default_footer.html index b291f79bcdaf5e14c939c51667b93898250b26ab..db134f1c3409db7df9544d7020b3abd8b9ab0513 100644 --- a/hshassets/templates/hshassets/includes/default_footer.html +++ b/hshassets/templates/hshassets/includes/default_footer.html @@ -34,11 +34,11 @@ </p> <p> <abbr title="{% trans "Email" %}"><span class="icon is-small"><i class="fa fa-envelope"></i></span></abbr> - <a href="mailto:support-it@hs-hannover.de">support-it@hs-hannover.de</a> + <a href="mailto:it-Support@hs-hannover.de">IT-Support@hs-hannover.de</a> </p> <p> <abbr title="{% trans "Web" %}"><span class="icon is-small"><i class="fa fa-globe"></i></span></abbr> - <a href="https://www.hs-hannover.de/it">https://hs-hannover.de/it</a> + <a href="https://www.hs-hannover.de/it">https://www.hs-hannover.de/it</a> </p> {% endblock %} </div> diff --git a/hshassets/utils.py b/hshassets/utils.py index a59da563914fe5eceaa781404ada87cfc0dc2484..3fb357bb31f3d6209da8ac8a880f2800a696de39 100644 --- a/hshassets/utils.py +++ b/hshassets/utils.py @@ -459,7 +459,7 @@ def build_app_css_from_scss(app_name): else: color_scheme = None - if not color_scheme and app_name == get_projectname(): + if not color_scheme and (app_name == get_projectname() or app_name == "hshassets"): # get default color scheme from HSHASSETS color_scheme = get_color_scheme(get_default_scss_path()) or 'service' diff --git a/setup.py b/setup.py index 445e7abee26af50eeb7633944910d8a680e80505..872129de3d7c66313e1af42b51754af82c13c018 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-hshassets', - version='2.2.1', + version='2.2.2', packages=find_packages(), include_package_data=True, license='MIT License',