So fügen Sie andere Kategorien in der Django -Administratorvorlage hinzu

#In the admin.py file add the models you want to see in the admin area:
from django.contrib import admin

from api.models import Customer, Products

# Register your models here.
admin.site.register(Customer)
admin.site.register(Products)
MitchAloha