You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
388 B
15 lines
388 B
# -*- coding: utf-8 -*-
|
|
from aldryn_apphooks_config.app_base import CMSConfigApp
|
|
from cms.apphook_pool import apphook_pool
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from .models import ServiceConfig
|
|
|
|
|
|
class BlogApp(CMSConfigApp):
|
|
app_config = ServiceConfig
|
|
name = _('Service')
|
|
urls = ['service.urls']
|
|
app_name = 'service'
|
|
|
|
apphook_pool.register(ServiceApp)
|
|
|