Metadata-Version: 1.1
Name: django-voice
Version: 0.3.3
Summary: A feedback application for Django 1.3 or later
Home-page: https://github.com/gkmngrgn/django-voice
Author: Gökmen Görgen
Author-email: gokmen@alageek.com
License: BSD
Description: ============
        django-voice
        ============
        
        django-voice is a very simple application to enable user feedback that is integrated with your Django project. Originally built for Verb (http://verbapp.com).
        
        Installation and Dependencies
        =============================
        
        To satisfy dependencies listed in REQUIREMENTS you can simply run this command:
        
        ::
        
          pip -r REQUIREMENTS
        
        
        'pip' will automatically download and install dependencies required for django-voice. Next step is activating helper applications to run.
        
         * Activate django's comment system. (https://docs.djangoproject.com/en/dev/ref/contrib/comments/)
         * Add django-gravatar and django-voting to your INSTALLED_APPS in settings file.
         * Add comments and django-voice to your url configration.
         * Create at least one Type and Status either through the admin or fixtures.
        
        After these steps, your INSTALLED_APPS in settings.py must be seen like this:
        
        ::
        
          INSTALLED_APPS = (
              ...
              'voting',
              'gravatar',
              'djangovoice'
          )
        
        and urls.py like this:
        
        ::
        
          urlpatterns = patterns(
              ...
              url(r'^comments/', include('django.contrib.comments.urls')),
              url(r'^feedback/', include('djangovoice.urls')))
        
        Remember to create and save at least one Type and Status model instance.
        
        That's all you need to run django-voice.
        
        AUTHORS
        =======
        DjangoVoice was originally created by Huw Wilkins (http://huwshimi.com/)
        
        Contributors:
        
         * Ross Poulton http://rossp.org/
         * Gökmen Görgen http://gokmengorgen.net/
         * Mirat Can Bayrak http://miratcanbayrak.blogspot.com/
         * Simon Ye https://github.com/yesimon
        
Platform: any
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Framework :: Django
Classifier: Environment :: Web Environment
