django-scout is a django package to conduct Web-based survey.
The package can handle set of operations such as creating survey, adding different type of questions to the survey(image, text, number, location-lat-lng, choices, etc), analyzing and visualizing the surveys response.
Add "django-scout" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = ( ... 'survey', )
Include the polls URLconf in your project urls.py like this:
url(r'^survey/', include('survey.urls')),
Run python manage.py migrate to create the survey models.
Start the development server and visit http://127.0.0.1:8000/admin/ to create a survey with set of questions of certain types.