348069364c
This patch reduces duplication arbitrary directory choices for xstatic package locations in the static directory. It moves the xstatic configuration from the library into the settings file, and the supporting functions move to the openstack_dashboard.utils.settings module. Having the xstatic module list in settings allows deployers to add new modules. It standardises the paths the files are served from, reducing potential conflicts. It simplifies the interaction with the xstatic modules, and also uses the new MAIN variable if present to determine the entry points used. Since some of the xstatic packages were installed into special snowflakes directories (not following a pattern) the references to those (bootstrap_scss and font_awesome) have been fixed. Change-Id: Ia5be0e96fff1a4ddd6058d6b030ddf96da4b46e7
30 lines
987 B
HTML
30 lines
987 B
HTML
{% load compress %}
|
|
{% load themes %}
|
|
|
|
{% compress css %}
|
|
<link href='{{ STATIC_URL }}horizon/lib/bootstrap_datepicker/datepicker3.css' type='text/css' media='screen' rel='stylesheet' />
|
|
<link href='{{ STATIC_URL }}horizon/lib/rickshaw/rickshaw.css' type='text/css' media='screen' rel='stylesheet' />
|
|
{% endcompress %}
|
|
|
|
|
|
{% current_theme as current_theme %}
|
|
{% theme_dir as theme_dir %}
|
|
|
|
{% comment %}
|
|
The following 'include' is used to allow all scss files to share the same variable namespace
|
|
and also have access to ALL styles so that we can allow @extend functionality to persist.
|
|
|
|
If you wish to add new scss files, it is recommended that you add them from within the
|
|
themes/themes.scss template file.
|
|
{% endcomment %}
|
|
|
|
{% with THEME=current_theme THEME_DIR=theme_dir %}
|
|
{% compress css %}
|
|
<style type="text/scss">
|
|
{% include 'themes/themes.scss' %}
|
|
</style>
|
|
{% endcompress %}
|
|
{% endwith %}
|
|
|
|
<link rel="shortcut icon" href="{% themable_asset 'img/favicon.ico' %}"/>
|