Quickly create an admin interface for an app.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
from django.contrib import admin
from django.db.models.loading import get_models, get_app

class DynamicColumnAdmin(admin.ModelAdmin):
    def __init__(self, *args, **kwargs):
        super(DynamicColumnAdmin, self).__init__(*args, **kwargs)
        field_list = [i.name for i in self.model._meta.fields]
        self.list_display = field_list
        self.list_display_links = field_list[0]

for model in get_models(get_app('your_appname')):
    admin.site.register(model, DynamicColumnAdmin)

More like this

  1. Twin column model admin index by richardbolt 5 years, 1 month ago
  2. Get the sourcecode from a template name without rendering it by bartTC 4 years, 1 month ago
  3. Admin Apps Names Translation by Nad/ 3 years, 4 months ago
  4. View all log entries in the admin by jakub 1 year, 10 months ago
  5. Automagically import settings from installed applications by jezdez 5 years, 3 months ago

Comments

(Forgotten your password?)