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.
16 lines
346 B
16 lines
346 B
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from cms.app_base import CMSApp
|
|
from cms.apphook_pool import apphook_pool
|
|
|
|
|
|
class PeopleApp(CMSApp):
|
|
name = _('People')
|
|
urls = ['aldryn_people.urls']
|
|
app_name = 'aldryn_people'
|
|
|
|
apphook_pool.register(PeopleApp)
|
|
|