2018-03-27 19:19:26 +05:30
|
|
|
from django.contrib import admin
|
|
|
|
from cms.admin.placeholderadmin import PlaceholderAdminMixin
|
|
|
|
from .cms_models import CMSIntegration
|
|
|
|
|
|
|
|
|
|
|
|
class CMSIntegrationAdmin(PlaceholderAdminMixin, admin.ModelAdmin):
|
2018-04-03 22:41:29 +05:30
|
|
|
list_display = ('name', 'domain')
|
2018-03-27 19:19:26 +05:30
|
|
|
|
|
|
|
|
|
|
|
admin.site.register(CMSIntegration, CMSIntegrationAdmin)
|