from django.contrib import admin from .models import Story, Bar # Register your models here. admin.site.register(Story) admin.site.register(Bar)