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