Metadata-Version: 2.0
Name: django-clubhouse
Version: 0.2.15
Summary: An open source content management system build on the Django Framework, extending Mezzanine.
Home-page: https://github.com/chazmead/django-clubhouse
Author: Charles Mead
Author-email: chazmead89@gmail.com
License: BSD
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: Mezzanine (==4.1.0)
Requires-Dist: filebrowser-safe (==0.4.3)
Requires-Dist: grappelli-safe (==0.4.2)

# Django-Clubhouse
An Open Source content management system build to compliment the [Mezzanine CMS](https://github.com/stephenmcd/mezzanine), by adding the concept of Modular Pages and block admin for multi-model change lists.

## Installation
+ Install django-clubhouse with `pip install django-clubhouse`
+ Add `mezzanine.conf`, `mezzanine.core`, `mezzanine.generic`, `mezzanine.pages`, `mezzanine.twitter` to `INSTALLED_APPS` in your Django settings module
+ Add `clubhouse.core`, `clubhouse.contrib`, `clubhouse.forms` to `INSTALLED_APPS` in your Django Settings module
+ Add the following snippet to the end of the Django settings module:
```python
try:
    from clubhouse.utils.conf import set_dynamic_settings
except ImportError:
    pass
else:
    set_dynamic_settings(globals())
```



