Mass updatting objects in Django's admin site.
- Put massadmin on your project path (the one with the
__init__.py
&urls.py
) - Add
'massadmin'
toINSTALLED_APPS
insettings.py
- Change line 9 in
urls.py
:... 'server.massadmin.massadmin.mass_change_view'
to reference the appropriate location of massadmin - Add
url(r'^admin/', include("massadmin.urls")),
tourls.py