Metadata-Version: 1.0
Name: redsolutioncms.django-simple-feedback
Version: 0.1.0
Summary: Simple application, that provides customizable email form tempalte tag.
You can specify form fields and optionally enable dedicated view to render feedback page.
Home-page: UNKNOWN
Author: Ivan Gromov
Author-email: ivan.gromov@redsolution.ru
License: GPLv3
Description: Simple Django feedback application
        ====================================
        
        Usage
        `````
        
        Add ``feedback`` to INSTALLED_APPS ::
            
            INSTALLED_APPS = [
                ...
                'feedback',
                ...
            ]
        
        Load feedback template tags:
        
        
            ``{% load feedback_tags %}``
        
        Insert template tag in your template
        
            ``{% show_feedback %}``
        
        Include something like
            
            ``(r'^feedback', include('feedback.urls'))``
        
        in urlpatterns. That's all!
            
        Requriments
        ```````````
        
        Note that feedback uses ajax form based on jQuery, so you need to include jQuery
        in your page. You can install it from Google hosting. Just include 
        
        	``<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>``
        
        in <head> element.
        
        Customize
        `````````
        
        You can customize these settings in your settings.py:
        	
        
        		``FEEDBACK_FORM`` - form, that will be displayed to user. 
        		By default form contains email, topic and response fields
        		
        		``DIRECT_TO_TEMPLATE`` - Should application render feedback form 
        		direct to template ``fedback/feedback_page.html``, or you prefer to use
        		template tag in other templates.
        
        To find out more documentation, run in doc folder
        
            ./doc$ make html
        
        and browse documentation in doc/build/html
        
        Redsolution CMS classifiers:
        ````````````````````````````
        
        `Content plugins`_
        
        .. _`Content plugins`: http://www.redsolutioncms.org/classifiers/content
        
Keywords: django feedback form
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Framework :: Django
Classifier: Environment :: Web Environment
Classifier: Natural Language :: Russian
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
