Contact form app for Django
Project description
- Membrete is a Django application which provides an easy to use contact form
allowing to store contact messages in the database.
If you are using it and have ideas for it I’ll be more than happy to hear them!
Features
Messages are stored in the database
Recipients are Users (from django.contrib.auth)
Internationalization support
Support for using templates for messages
AJAX support
Alternatives
django-contact-form is an extensible and very flexible contact form app for Django (from which membrete borrows some ideas)
Super quick start
Go to the devproject directory and run the following commands:
python manage.py syncdb python manage.py runserver
Go to http://localhost:8000/ to see Membrete in action!
Installation
Simply run the setup.py script as root, like this:
python setup.py install
Usage
To use Membrete in your project, just follow this simple steps:
Add membrete to INSTALLED_APPS in your settings.py file
Run python manage.py syncdb under your project directory to create membrete’s tables
Edit the urls.py file and add something like this to urlpatterns:
(r'^contact$', include('membrete.urls')),
Done! Fire up the server and go to http://localhost:8000/contact
NOTE: membrete’s templates expect a base.html template to extend from.
Source
Branch Membrete using Bazaar:
bzr branch http://gonzalodelgado.com.ar/bzr/membrete/main membrete
More info
Get more information about membrete from its website If you have any questions feel free to email me anytime.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.