from django.contrib import admin from .models import Tea, Company admin.site.register(Tea) admin.site.register(Company)