If I have this kind of modelAdmin:

admin.py

#...
class ScribPartAdmin(admin.ModelAdmin):
  class Media:
    css = {
      'all': ('css/mymarkup.css',)
    }

admin.site.register(ScribPart, ScribPartAdmin)
#...

mymarkup.css is actually included in all the pages concerning the object ScribPart.

How can I specify in which change_form, change_list, add_form, ... template I need this css ?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

To the best of my knowledge, you would need to override the template files for these views. You can inherit from the default template files, and just add your custom CSS in the extrahead block.

link|improve this answer
You mean overriding my_project/template/admin/my_app/scribpart/change_form.html would be the only way ? – Pierre de LESPINAY Sep 1 '11 at 14:02
For the change form template, you can use the code you included in your question. But for all other views, I believe you would need to override the template. – Gary Chambers Sep 1 '11 at 14:19
1  
@Glide, why not? Templates is a right place to work with CSS and overriding them is easy. Anyway, documentation says that media definitions of ModelAdmin used in all add/change admin views. – Kirill Sep 1 '11 at 14:29
Ok so I'm wondering in which case would we need the ModelAdmin media definition :) Thank you both. – Pierre de LESPINAY Sep 1 '11 at 14:42
feedback

You can load a .js file wich load a specific css file for each page. :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.