django-voice

A simple user feedback application for your Django project
Download

django-voice Ranking & Summary

Advertisement

  • Rating:
  • License:
  • BSD License
  • Publisher Name:
  • Gokmen Gorgen
  • Publisher web site:
  • https://github.com/gkmngrgn/

django-voice Tags


django-voice Description

A simple user feedback application for your Django project django-voice is a very simple Django app to enable user feedback that is integrated with your Django project. Originally built for Verb (http://verbapp.com)Installation and DependenciesFirtsly you have to satisfy dependencies which described in REQUIREMENTS file. Easy way to do is using pip installer with -r parameter.pip -r REQUIREMENTSthis command will download and install dependencies required for django voice. After satisfying dependencies second 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.After you do these, your INSTALLED_APPS must be 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. Requirements: · Python · Django


django-voice Related Software