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