Comment ajouter d'autres catégories dans le modèle d'administration Django

#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