mirror of
https://github.com/jazzband/django-constance.git
synced 2026-04-18 06:00:59 +00:00
6 lines
146 B
Python
6 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)
|