dr.botzo/dr_botzo/facts/admin.py
Brian S. Stephan eb006db04d facts: store facts in the database for retrieval
should be able to accomplish a variety of things, from actual helpful
facts to quotes to fortune commands
2015-05-21 22:32:57 -05:00

8 lines
140 B
Python

from django.contrib import admin
from facts.models import Fact, FactCategory
admin.site.register(Fact)
admin.site.register(FactCategory)