mezzanine-people

A simple People app for Mezzanine CMS sites.


License
MIT
Install
pip install mezzanine-people==0.1

Documentation

Overview

This pluggable app provides a "Person" model to categorize and list people on your Mezzanine sites.

Requirements

Mezzanine CMS

Setup

  • Add mezzanine_people to your environment:
    pip install mezzanine_people
  • Add "mezzanine_people" to INSTALLED_APPS:
    INSTALLED_APPS = (
        "...",
        "mezzanine_people",
    )
  • Set values in your project settings.py (optional):
    PEOPLE_PER_PAGE = 5 # the default is 10
  • Include the people URLconf in your project urls.py like this:
    url(r'^people/', include('mezzanine_people.urls')),
  • Run python manage.py createdb or python manage.py syncdb && python manage.py migrate.

Releases

  • Version 0.1 - Initial Release