1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | def admin_register(admin, namespace):
'''convenience function to easily register admin classes
:param admin: result of 'from django.contrib import admin'
:param namespace: must take a locally called globals
usage::
# should be at the end of the admin.py file
# globals must be called locally as below
admin_register(admin, namespace=globals())
'''
for name, model_admin in namespace.copy().iteritems():
if name.endswith("Admin"):
model = namespace[name[:-5]]
admin.site.register(model, model_admin)
|
More like this
- djangopath: conveniently set sys.path and DJANGO_SETTINGS_MODULE by alia_khouri 4 years, 9 months ago
- Type less with newforms admin by ncw 4 years, 10 months ago
- change settings locally in an individual test by akaihola 2 years, 9 months ago
- Decorating URL includes by cotton 1 year, 9 months ago
- Django-admin autoregister -- automatic model registration by Samus_ 2 years, 11 months ago
Comments