from django.contrib import admin from .models import Lead, Call admin.site.register(Lead) admin.site.register(Call)