congress/congress_dashboard/templates/admin/base.html
Masahito Muroi 28812457c0 Fix launching devstack failure in gate
During setting up devstack for tempest test, django fails to compress
a css file specified in congress_dashboard and then gate test fails.

This change is quick fix of the gate failure. The {% compress css %} tag
only to improve response performance in django application. So it's not
nessesary. Refer http://django-compressor.readthedocs.io/en/latest/usage/
for the details.

Change-Id: I8c395ba727b0ac8a1ec194828093b97886f907f6
2016-08-22 18:17:17 +09:00

15 lines
334 B
HTML

{% extends 'base.html' %}
{% block css %}
{% include "_stylesheets.html" %}
{% load compress %}
{% compress css %}
<link href='{{ STATIC_URL }}admin/css/policies.css' type='text/css' media='screen' rel='stylesheet' />
{% endcompress %}
{% endblock %}
{% block js %}
{% include "admin/_scripts.html" %}
{% endblock %}