eci / mezzanine-people

A simple app that provides a Person model for Mezzanine CMS sites

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Overview

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

Requirements

[Mezzanine CMS] 1

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

About

A simple app that provides a Person model for Mezzanine CMS sites

License:MIT License


Languages

Language:Python 100.0%