TheHerk Resources is a Django application for keeping track of and referencing resources like organizations and people (for now).
Each allows the addition of many contact types with a very straightforward admin interface.
It also includes Django-cms plugins for displaying the data in a few different ways.
-
Add "resources" and "localflavor" to your INSTALLED_APPS
INSTALLED_APPS = ( ... 'localflavor', 'resources', )
-
Run
python manage.py migrate resources
.Alternately, you could
syncdb
andmigrate --fake