1 from django.contrib import admin
2
3 from models import Story
4
5
6 admin.site.register(Story)
7 raise Exception("Bad admin module")