Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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)
 
PREVIOUS NEXT
Tagged: #add #categories #django #admin #template
ADD COMMENT
Topic
Name
6+9 =