how to add other categories in django admin template
#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)