A social CRM
Quick start
Add “patron” to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'patron', ]Include the patron URLconf in your project urls.py like this:
url(r'^crm/', include('patron.urls')),Run python manage.py migrate to create the patron models.
Start the development server
Visit http://127.0.0.1:8000/crm/ to participate.