Skip to content

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

License

Notifications You must be signed in to change notification settings

eci/mezzanine-people

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages