The problem reported can be because you skipped registering the models for the admin site. This can be done, creating an admin.py file under your app, and there registering the models with:
from django.contrib import admin
from .models import MyModel
admin.site.register(MyModel)