Skip to content
This repository has been archived by the owner on Sep 29, 2023. It is now read-only.

Latest commit

 

History

History
33 lines (25 loc) · 741 Bytes

File metadata and controls

33 lines (25 loc) · 741 Bytes

Orchester CMS integration

The Django-CMS integration of the Orchester service library

Getting started

In your website settings.py, you must add the orchester_cms_integration in the INSTALLED app list after teamModule:

INSTALLED_APPS = (
  'djangocms_admin_style',
  'django.contrib.auth',
  'django.contrib.contenttypes',
  'django.contrib.sessions',
  'django.contrib.admin',
  /* ... */
  'teamModule',
  'orchester_cms_integration'
)

Now in your website urls.py file, you'll need to register the app urls:

urlpatterns += i18n_patterns(
  url(r'^admin/', include(admin.site.urls)),  # NOQA
  url(r'^orchester/', include('orchester_cms_integration.urls')),
  url(r'^', include('cms.urls')),
)