I need to have bootstrap css in django admin, but only in change view, not list view. If I use
class Media:
css = {
'all': ('tagsinput/bootstrap-tagsinput.css', 'bootstrap-3.3.7-dist/css/bootstrap.css',)
}
It affects both views and breaks some elements in list view. How can I do that?