django-dockitcms

CMS written using django-dockit


Keywords
django, CMS
License
BSD-3-Clause
Install
pip install django-dockitcms==0.0.11

Documentation

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

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')),
)