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

6 lines
146 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, Supply
admin.site.register(Shelf)
admin.site.register(Supply)