django-dockitcms

CMS written using django-dockit

BSD-3-CLAUSE License

Stars
10

.. image:: https://secure.travis-ci.org/zbyte64/django-dockitcms.png?branch=master :target: http://travis-ci.org/zbyte64/django-dockitcms

Introduction

CMS written using django-dockit.

Demo Site: http://dockitcmsdemo.herokuapp.com/ Demo Site Code: https://github.com/zbyte64/dockitcmsdemo


Features

  • Document based CMS
  • Create collections, indexes, and views in an admin or API
  • Integrates with hyperadmin
  • Configurable plugins (mixins)

Installation


Requirements


Settings

Put 'dockitcms' and 'dockitcms.widgetblock' into your INSTALLED_APPS section of your settings file.

Add the following middleware: 'dockitcms.middleware.DefaultScopeMiddleware'

Set the following in your settings file::

SCOPE_PROCESSORS = [
    'dockitcms.widgetblock.scope_processors.widgets',
    'dockitcms.widgetblock.scope_processors.modelwidgets',
]

Add the following to your urls.py after eveything else::

urlpatterns += patterns('',
    url(r'^', include('dockitcms.urls')),
)