Skip to content

rossp/django-voice

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

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')))

These are all that you need to do run django-voice.

AUTHORS

DjangoVoice was originally created by Huw Wilkins (http://huwshimi.com/)

Contributors:

About

A simple user feedback application for your Django project

Resources

Stars

Watchers

Forks

Packages

No packages published