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