12 lines
281 B
Python
12 lines
281 B
Python
"""
|
|
Admin registration for the horilla_theme app
|
|
"""
|
|
|
|
from django.contrib import admin
|
|
|
|
from horilla_theme.models import CompanyTheme, HorillaColorTheme
|
|
|
|
# Register your horilla_theme models here.
|
|
admin.site.register(HorillaColorTheme)
|
|
admin.site.register(CompanyTheme)
|