Skip to main content

A very simple Contact Form for django

Project description

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 %}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

indeed_contactForm-1.0.1.tar.gz (3.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page