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 mod
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.
I did it with Proxy Models....