mirror of
https://github.com/Labelbase/Labelbase.git
synced 2026-08-17 13:07:28 +02:00
6 lines
148 B
Python
6 lines
148 B
Python
from django.contrib import admin
|
|
from .models import Labelbase
|
|
from .models import Label
|
|
|
|
admin.site.register(Labelbase)
|
|
admin.site.register(Label)
|