This pluggable app provides a "Person" model to categorize and list people on your Mezzanine sites.
[Mezzanine CMS] 1
- 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
orpython manage.py syncdb && python manage.py migrate
.
- Version 0.1 - Initial Release