diff options
Diffstat (limited to 'chimere/forms.py')
-rw-r--r-- | chimere/forms.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chimere/forms.py b/chimere/forms.py index 8ce9ad2..ef2d3fb 100644 --- a/chimere/forms.py +++ b/chimere/forms.py @@ -155,6 +155,9 @@ class CategoryAdminForm(forms.ModelForm): js = list(settings.JQUERY_JS_URLS) + [ '%schimere/js/menu-sort.js' % settings.STATIC_URL, ] + css = { + 'all': ('chimere/css/admin.css',) + } class Meta: model = Category |