django-webleads
===============

django-webleads is a Django application for incoming leads management.


Installing
----------

Install package from pypi::

    $ easy_install django-webleads

Include ``webleads`` in the ``INSTALLED_APPS`` setting.
Include ``webleads.middleware.LeadMiddleware`` int the ``MIDDLEWARE_CLASSES`` setting
Include ``MARKETING_EMAIL`` setting. This can be a e-mail list or a simple e-mail
Webleads use the ``sites`` application to django.
Configure the ``DEFAULT_FROM_EMAIL`` setting.

Create data models::

    $ python manage.py syncdb --migrate
