- Author:
- alia_khouri
- Posted:
- September 2, 2008
- Language:
- Python
- Version:
- .96
- Score:
- -1 (after 1 ratings)
This essentially wraps snippet 917 (with full credit to author ncw) in a convenience function so that you can type:
admin_register(admin, namespace=globals())
or more concisely:
admin_register(admin, globals())
at the end of your admin.py file without having to register each model and admin class individually.
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
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 1 week ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 2 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
Please login first before commenting.