File tree Expand file tree Collapse file tree 2 files changed +31
-6
lines changed Expand file tree Collapse file tree 2 files changed +31
-6
lines changed Original file line number Diff line number Diff line change
1
+ # -*- coding: utf-8 -*-
2
+
3
+ from __future__ import unicode_literals
4
+
5
+ from django .db import migrations
6
+
7
+
8
+ class Migration (migrations .Migration ):
9
+
10
+ dependencies = [
11
+ ('admin_interface' , '0023_theme_foldable_apps' ),
12
+ ]
13
+
14
+ operations = [
15
+ migrations .RemoveField (
16
+ model_name = 'theme' ,
17
+ name = 'css' ,
18
+ ),
19
+ ]
Original file line number Diff line number Diff line change 29
29
{% include "admin_interface/css/tinymce.css" %}
30
30
{% include "admin_interface/css/json-widget.css" %}
31
31
{% include "admin_interface/css/rtl.css" %}
32
-
33
- {% if theme.css %}
34
- {{ theme .css |safe }}
35
- {% endif %}
36
-
37
32
</ style >
38
33
39
34
{% if current_lang == 'fa' %}
55
50
{% include "admin_interface/related-modal.html" %}
56
51
{% endblock %}
57
52
58
- {% block bodyclass %}admin-interface flat-theme {% get_admin_interface_theme as theme %}{% if theme.name %}{{ theme.name|slugify }}-theme{% endif %}{% if theme.foldable_apps %} foldable-apps {% endif %}{% if theme.form_submit_sticky %} sticky-submit {% endif %}{% if theme.form_pagination_sticky %} sticky-pagination {% endif %}{% endblock %}
53
+ {% block extrahead %}
54
+ {{ block.super }}
55
+ {% endblock %}
56
+
57
+ {% block bodyclass %}
58
+ {% get_admin_interface_theme as theme %}
59
+ flat-theme admin-interface
60
+ {% if theme.name %} {{ theme.name|slugify }}-theme {% endif %}
61
+ {% if theme.foldable_apps %} foldable-apps {% endif %}
62
+ {% if theme.form_submit_sticky %} sticky-submit {% endif %}
63
+ {% if theme.form_pagination_sticky %} sticky-pagination {% endif %}
64
+ {% endblock %}
59
65
60
66
{% block branding %}
61
67
{% get_admin_interface_theme as theme %}
You can’t perform that action at this time.
0 commit comments