dr.botzo/dr_botzo/storycraft/admin.py
Brian S. Stephan 1193ce5b6a storycraft: port to ircbot v2
this silly storytelling game has been lightly tested, but it appears to
not blow up miserably, so i'm going to commit it until i can spend more
time testing it/caring about it
2015-06-19 21:06:58 -05:00

9 lines
279 B
Python

from django.contrib import admin
from storycraft.models import StorycraftGame, StorycraftPlayer, StorycraftLine
admin.site.register(StorycraftGame, admin.ModelAdmin)
admin.site.register(StorycraftPlayer, admin.ModelAdmin)
admin.site.register(StorycraftLine, admin.ModelAdmin)