Skip to main content

Survey app that allows questions and answers to be created in several languages.

Project description

https://badge.fury.io/py/django-multilingual-survey.svg

Django Multilingual Survey

Survey app that allows questions and answers to be created in several languages.

Allows users to submit free text in an “other” field, if none of the choices are sufficient for the user. Users can even submit several custom answers to a question by submitting several comma separated values.

Admins will get notified if a user submits a custom answer via the “other” field. They have an admin view that allows to accept, reject or rename the custom answer.

This ensures that users who submit the same custom answer but with different spelling (i.e. “Vim” and “VIM”) will ultimately get hooked up with the same unified SurveyAnswer object, which makes the creation of reports much easier and yields more accurate survey results.

Questions and answers can be provided in several languages using django-hvad

Installation

To get the latest stable release from PyPi

pip install django-multilingual-survey

To get the latest commit from GitHub

pip install -e git+git://github.com/bitmazk/django-multilingual-survey.git#egg=multilingual_survey

Add multilingual_survey to your INSTALLED_APPS

INSTALLED_APPS = (
    ...,
    'generic_positions',
    'multilingual_survey',
)

Add the multilingual_survey URLs to your urls.py

urlpatterns = patterns('',
    ...
    url(r'^pos/', include('generic_positions.urls')),
    url(r'^survey/', include('multilingual_survey.urls')),
)

Don’t forget to migrate your database

./manage.py migrate multilingual_survey

Usage

TODO: Describe usage or point to docs. Also describe available settings and templatetags.

Contribute

If you want to contribute to this project, please perform the following steps

# Fork this repository
# Clone your fork
mkvirtualenv -p python2.7 django-multilingual-survey
make develop

git co -b feature_branch master
# Implement your feature and tests
git add . && git commit
git push -u origin feature_branch
# Send us a pull request for your feature branch

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-multilingual-survey-1.0.tar.gz (19.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page