Initial commit
This commit is contained in:
commit
19170142c3
20 changed files with 894 additions and 0 deletions
13
froide_govplan/cms_apps.py
Normal file
13
froide_govplan/cms_apps.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
from django.utils.translation import gettext_lazy as _
|
||||
|
||||
from cms.app_base import CMSApp
|
||||
from cms.apphook_pool import apphook_pool
|
||||
|
||||
|
||||
@apphook_pool.register
|
||||
class GovPlanCMSApp(CMSApp):
|
||||
name = _("GovPlan CMS App")
|
||||
app_name = "govplan"
|
||||
|
||||
def get_urls(self, page=None, language=None, **kwargs):
|
||||
return ["froide_govplan.urls"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue