Namespace the apps
This commit is contained in:
parent
5f311ca7bd
commit
71e9ca11bd
16 changed files with 61 additions and 0 deletions
|
@ -0,0 +1,3 @@
|
|||
# @@@ Reconcile differences with django-boxes [1] and remove from Symposion
|
||||
|
||||
# [1] http://github.com/eldarion/django-boxes/
|
|
@ -0,0 +1,2 @@
|
|||
# @@@ Consider replacing with pinax-wiki [1]
|
||||
default_app_config = "symposion.cms.apps.CMSConfig"
|
7
symposion/cms/apps.py
Normal file
7
symposion/cms/apps.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class CMSConfig(AppConfig):
|
||||
name = "symposion.cms"
|
||||
label = "symposion_cms"
|
||||
verbose_name = "Symposion CMS"
|
|
@ -0,0 +1 @@
|
|||
default_app_config = "symposion.conference.apps.ConferenceConfig"
|
7
symposion/conference/apps.py
Normal file
7
symposion/conference/apps.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class ConferenceConfig(AppConfig):
|
||||
name = "symposion.conference"
|
||||
label = "symposion_conference"
|
||||
verbose_name = "Symposion Conference"
|
|
@ -0,0 +1 @@
|
|||
default_app_config = "symposion.proposals.apps.ProposalsConfig"
|
7
symposion/proposals/apps.py
Normal file
7
symposion/proposals/apps.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class ProposalsConfig(AppConfig):
|
||||
name = "symposion.proposals"
|
||||
label = "symposion_proposals"
|
||||
verbose_name = "Symposion Proposals"
|
|
@ -0,0 +1 @@
|
|||
default_app_config = "symposion.reviews.apps.ReviewsConfig"
|
7
symposion/reviews/apps.py
Normal file
7
symposion/reviews/apps.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class ReviewsConfig(AppConfig):
|
||||
name = "symposion.reviews"
|
||||
label = "symposion_reviews"
|
||||
verbose_name = "Symposion Reviews"
|
|
@ -0,0 +1 @@
|
|||
default_app_config = "symposion.schedule.apps.ScheduleConfig"
|
7
symposion/schedule/apps.py
Normal file
7
symposion/schedule/apps.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class ScheduleConfig(AppConfig):
|
||||
name = "symposion.schedule"
|
||||
label = "symposion_schedule"
|
||||
verbose_name = "Symposion Schedule"
|
|
@ -0,0 +1 @@
|
|||
default_app_config = "symposion.speakers.apps.SpeakersConfig"
|
7
symposion/speakers/apps.py
Normal file
7
symposion/speakers/apps.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class SpeakersConfig(AppConfig):
|
||||
name = "symposion.speakers"
|
||||
label = "symposion_speakers"
|
||||
verbose_name = "Symposion Speakers"
|
|
@ -0,0 +1 @@
|
|||
default_app_config = "symposion.sponsorship.apps.SponsorshipConfig"
|
7
symposion/sponsorship/apps.py
Normal file
7
symposion/sponsorship/apps.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class SponsorshipConfig(AppConfig):
|
||||
name = "symposion.sponsorship"
|
||||
label = "symposion_sponsorship"
|
||||
verbose_name = "Symposion Sponsorship"
|
|
@ -0,0 +1 @@
|
|||
# @@@ Replace this with pinax-teams
|
Loading…
Reference in a new issue