Metadata-Version: 1.1
Name: django-simple-feedback-form
Version: 1.0-r1
Summary: Simple feedback form for your django project.
Home-page: https://github.com/DOOMer/django-simple-feedback-form
Author: Artem Galichkin
Author-email: doomer3d@gmail.com
License: LICENSE.txt
Download-URL: https://github.com/DOOMer/django-simple-feedback-form
Description: ===========================
        Django Simple Feedback Form
        ===========================
        
        This `Django <http://djangoproject.com>`_ app has for provide simple form for sending mail forom users to admins your django-based site.
        
        Installation 
        ------------
         
        Install into your python path using pip or github version::
        
          pip install django-simple-feedback-form
        
        or::
          
          pip install -e git://github.com/DOOMer/django-simple-feedback-form#egg=django-simple-feedback-form
        
        Using in your project
        ---------------------
          
        Add *'feedback_form'* to your INSTALLED_APPS in settings.py,
        
          INSTALLED_APPS = (
            ...
            
            'feedback_form',
        
          )
          
        and add *'feedback_form.urls'* in your main usrs configuration::
        
          url(r'^feedback/', include("feedback_form.urls", namespace="feedback_form")),
          
        and add in your template add link to feedback view::
        
          <a href="{% url 'feedback' %}">Feedback form</a>
          
        And override the template "feedback_form/feedback.html" for your site.
        
        Additional settings 
        -------------------
        
        You can override these settings in your main settngs.py file:
        
        **CONTACT_ADMINS_ONLY** - send email only to users which added in ADMINS tuple. By default is enabled. If it is a disabled, send to MANAGERS mails too.
        
        **CONTACT_SEND_META_INFO**- send meta information about user (IP and user-agent). By default is disabled.
Platform: UNKNOWN
