Reputation: 6865
in the Django administration console, all section (menu links) come from models with database tables, but what would I need to do if I need a section without a corresponding model object (no database table) that fetches data from other section with model?
Any ideas? Thanks
Upvotes: 15
Views: 22680
Reputation: 46284
It looks like you want to add new admin urls with your own customized views and template: django.contrib.admin.ModelAdmin.get_urls
You can construct those new admins without a new model this way.
Upvotes: 17