django-qcf

Django quick contact form

MIT License

Downloads
52
Stars
3
Committers
4

Django quick contact form

A simple contact form that can save the messages to the db.

pip install django-qcf

Add 'qcf', to installed apps, migrate

Set urls:

url(r'^contact/', include('qcf.urls')),

Settings

   SAVE_TO_DB = True

   RECIPIENTS_LIST = [settings.DEFAULT_FROM_EMAIL] # set your list of recipients in this setting

   EMAIL_SENT_MESSAGE = _(u'Your message has been sent')

Templates

To use the bootstrap templates install django-bootstrap-form and in settings:

QCF_TEMPLATES = "bootstrap"
Package Rankings
Top 21.63% on Pypi.org