from django.contrib import admin from .models import Account, AccountItem admin.site.register(Account) admin.site.register(AccountItem)