from django.contrib import admin from .models import CustUser, Product admin.site.register(CustUser) admin.site.register(Product)