indeed_contactForm will store messages sent with it in your database,
make them avaliable in the admin interface and send you an email with
the messages content.
For this to work you need to configure your django project to be able to
send emails.


simply use indeed_contactForm in a view like this:


from indeed_contactForm.views import contact as contactForm

def contact(request):
	return contactForm(request, 'contact.html')

if you need to make some variables in the template avaliable, you can
simply pass contact() a dict like you would pass it to render_to_response.

def contact(request):
	return contactForm(request, 'contact.html', {'myVar':42})


contact.html can contain a normal form, for example:

{% extends "whatever/base.html" %}

{% block content %}
{% if form.errors %}
    <p style="color: red;">
        Please correct the error{{ form.errors|pluralize }} below.
    </p>
{% endif %}

<form action="" method="post">{% csrf_token %}
    <table>
        {{ form.as_table }}
    </table>
    <input type="submit" value="Absenden">
</form>
{% endblock %}
