Metadata-Version: 1.0
Name: indeed_contactForm
Version: 1.0.2
Summary: A very simple Contact Form for django
Home-page: http://bitbucket.org
Author: Arne Weiss
Author-email: arne.weiss@udo.edu
License: GPLv2
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 %}
        
Platform: UNKNOWN
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
