django-constance/example/cheeseshop/apps/storage/admin.py
2010-12-02 10:49:29 +01:00

5 lines
146 B
Python

from django.contrib import admin
from cheeseshop.apps.storage.models import Shelf, Supply
admin.site.register(Shelf)
admin.site.register(Supply)