Merge pull request #10 from aostapenko/patch-1

Add parameter for specific env indication
diff --git a/horizon/files/horizon_settings/_local_settings.py b/horizon/files/horizon_settings/_local_settings.py
index f66e27a..ca999c3 100644
--- a/horizon/files/horizon_settings/_local_settings.py
+++ b/horizon/files/horizon_settings/_local_settings.py
@@ -204,4 +204,7 @@
 {%- endif %}
 
 SITE_BRANDING = '{{ app.get('branding', 'OpenStack Dashboard') }}'
+{%- if app.site_details is defined %}
+SITE_DETAILS = "{{ app.site_details }}"
+{%- endif %}
 SESSION_COOKIE_HTTPONLY = {{ app.get('session_cookie_httponly', True) }}