A feedback application for Django 1.3 or later
Project description
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.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
File details
Details for the file django-voice-0.3.4alpha.tar.gz.
File metadata
- Download URL: django-voice-0.3.4alpha.tar.gz
- Upload date:
- Size: 105.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2a275a1d5dd3842fca8186701d1475d8521b7bdb11e45359d2526f166f6eb8a
|
|
| MD5 |
2c402a08e9c5f1f4b2066663e7004f4e
|
|
| BLAKE2b-256 |
6bc4c7fbd57aba4af160975939f227754929ebd04632635c74c558eb211903e1
|
File details
Details for the file django-voice-0.3.4alpha.tar.bz2.
File metadata
- Download URL: django-voice-0.3.4alpha.tar.bz2
- Upload date:
- Size: 98.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f7e6cd5d6d7e06578a4cc280899839edc838561e3c057190b6a291642efa6f9
|
|
| MD5 |
d65a233ad00d00d12ccdc54b97d83cad
|
|
| BLAKE2b-256 |
31bd7177e4893f125a20c2c8ea699923501697340a29c157934f3ea4ca134540
|