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