Edit Model di Django Admin

#go to the admin.py inside django app directory
from django.contrib import admin
from .models import <name of model>

admin.site.register(<name of model>)

#this should now let you view and interact with your models on /admin
amahi2001