Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
from cms.app_base import CMSApp
from cms.apphook_pool import apphook_pool
@apphook_pool.register
class EOASeriesApphook(CMSApp):
app_name = "eoaseries" # must match the application namespace
name = "EOA Series Apphook"
def get_urls(self, page=None, language=None, **kwargs):
return ["eoaseries.urls"]
@apphook_pool.register
class EOAAuthorsApphook(CMSApp):
app_name = "eoaauthors" # must match the application namespace
name = "EOA Authors Apphook"
def get_urls(self, page=None, language=None, **kwargs):
return ["eoaauthors.urls"]