from django.contrib import admin from .models import Stock, Profile admin.site.register(Stock) admin.site.register(Profile)