mirror of
https://github.com/jazzband/django-constance.git
synced 2026-03-16 22:40:24 +00:00
7 lines
189 B
Python
7 lines
189 B
Python
from django.contrib import admin
|
|
|
|
from cheeseshop.apps.storage.models import Shelf
|
|
from cheeseshop.apps.storage.models import Supply
|
|
|
|
admin.site.register(Shelf)
|
|
admin.site.register(Supply)
|