django-constance/example/cheeseshop/apps/storage/admin.py

8 lines
189 B
Python
Raw Normal View History

2010-12-02 09:49:29 +00:00
from django.contrib import admin
from cheeseshop.apps.storage.models import Shelf
from cheeseshop.apps.storage.models import Supply
2010-12-02 09:49:29 +00:00
admin.site.register(Shelf)
admin.site.register(Supply)