Metadata-Version: 1.0
Name: django-modelfeedback
Version: 0.1.1
Summary: Adds support for receive feedback to django models using Likert scale.
Home-page: https://github.com/yokomizor/django-modelfeedback
Author: Rogério da Silva Yokomizo
Author-email: me@ro.ger.io
License: MIT License
Description: =======================
         Model Feedback v0.1.1
        =======================
        
        .. image:: https://travis-ci.org/yokomizor/django-modelfeedback.png?branch=master
           :alt: Build Status
           :target: https://travis-ci.org/yokomizor/django-modelfeedback
        
        .. image:: https://coveralls.io/repos/yokomizor/django-modelfeedback/badge.png?branch=master
           :alt: Coverage Status
           :target: https://coveralls.io/r/yokomizor/django-modelfeedback
        
        .. image:: https://pypip.in/v/django-modelfeedback/badge.png
           :alt: Pypi Version
           :target: https://pypi.python.org/pypi/django-modelfeedback
        
        .. image:: https://pypip.in/d/django-modelfeedback/badge.png
           :alt: Pypi Downloads
           :target: https://pypi.python.org/pypi/django-modelfeedback
        
        Adds support for receive feedback to django models using Likert scale.
        
        Detailed documentation is in `Model Feedback Github Page`_.
        
        
        Intallation
        -----------
        
        .. code-block:: bash
        
              pip install django-modelfeedback
        
        
        Quick start
        -----------
        
        1. Add "modelfeedback" to your INSTALLED_APPS setting like this::
        
              INSTALLED_APPS = (
                  ...
                  'modelfeedback',
              )
        
        2. Include the modelfeedback URLconf in your project urls.py like this::
        
              url(r'^feedback/', include('modelfeedback.urls')),
        
        3. Run `python manage.py syncdb` to create the feedback models.
        
        
        .. _Model Feedback Github Page: https://github.com/yokomizor/django-modelfeedback/wiki
        
        
        Sample Application
        ------------------
        
        .. code-block:: bash
        
              cd sample
              pip install -r requirements.txt
              ./manage syncdb
              ./manage runserver
        
        Visit http://127.0.0.1/ to see the sample.
        
        
        License
        -------
        
        MIT License. See LICENSE file.
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
