Login

easy admin registration

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

  1. Template tag - list punctuation for a list of items by shapiromatron 3 months, 2 weeks ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 3 months, 3 weeks ago
  3. Serializer factory with Django Rest Framework by julio 10 months, 2 weeks ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 11 months, 1 week ago
  5. Help text hyperlinks by sa2812 12 months ago

Comments

Please login first before commenting.