11 lines
239 B
Python
11 lines
239 B
Python
|
|
from django.contrib import admin
|
||
|
|
from horilla_views.models import (
|
||
|
|
ToggleColumn,
|
||
|
|
ParentModel,
|
||
|
|
childModel,
|
||
|
|
ActiveTab,
|
||
|
|
ActiveGroup,
|
||
|
|
)
|
||
|
|
|
||
|
|
admin.site.register([ToggleColumn, ParentModel, childModel, ActiveTab, ActiveGroup])
|