backoffice: remove double loading of gadjo.css (#26386)

This commit is contained in:
Frédéric Péters 2018-08-19 11:21:38 +02:00
parent 796dace354
commit 1833a87f71
2 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,3 @@
@import url(../qommon.css);
@import url(/static/css/gadjo.css);
#sidepage span#applabel {
visibility: visible;
}

View File

@ -4,11 +4,14 @@
{% block footer %}w.c.s. — Copyright © Entr'ouvert{% endblock %}
{% block gadjo-js %}
<link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/dc2/admin.css"/>
{{script|safe}}
{% endblock %}
{% block css %}
{% block gadjo-css %}
<link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/qommon.css"/>
{{ block.super }}
{% block css %}{% endblock %}
<link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/dc2/admin.css"/>
{% endblock %}
{% block bodyargs %}{% if admin_for_all %}class="admin-for-all"{% endif %}{% endblock %}