A django survey app, based on and compatible with "django-survey". You will be able to migrate your data from an ancient version of django-survey, but it has been ported to python 3 and you can export results as CSV or PDF using your native language.
Project description
Django survey
A django survey app, based on and compatible with "django-survey". You will be able to migrate your data from an ancient version of django-survey, but it has been ported to python 3 and you can export results as CSV or PDF using your native language.
If you want the latest version still compatible with python 2.7 you need a version < 1.3.0.
Table of contents
- Getting started
- Making a survey
- Generating a pdf report from the survey's result
- Contributing as a developper
- Translating the project
- Credit
Getting started
Add django-survey-and-report
to your requirements and get it with pip.
echo 'django-survey-and-report' > requirements.txt
pip install -r requirements.txt
Add bootstrapform
and survey
in the INSTALLED_APPS
in your settings :
INSTALLED_APPS = [
# Your own installed apps here
]
INSTALLED_APPS += [
'bootstrapform',
'survey'
]
Add an URL entry to your project’s urls.py, for example:
from django.conf import settings
from django.conf.urls import include, url
urlpatterns = [
# Your own url pattern here
]
if 'survey' in settings.INSTALLED_APPS:
urlpatterns += [
url(r'^survey/', include('survey.urls'))
]
Note: you can use whatever you wish as the URL prefix.
To uninstall django-survey-and-report
, simply comment out or remove the
'survey' line in your INSTALLED_APPS
.
If you want to use the pdf rendering with the Sankey's diagram generation you will have to install python-tk (for python 2.7) or python3-tk (for python 3.x).
Making a survey
Using the admin interface you can create surveys, add questions, give questions categories, and mark them as required or not. You can define choices for answers using comma separated words.
The front-end survey view then automatically populates based on the questions that have been defined and published in the admin interface. We use bootstrap3 to render them.
Submitted responses can be viewed via the admin backend, in an exported csv or in a pdf generated with latex.
Generating a pdf report from the survey's result
You can manage the way the report is created in a yaml file, globally, survey by survey, or question by question. In order to render pdf you will need to install texlive and python-tk or python3-tk for sankey's diagram.
The results are generated for the server only when needed, but you can force it as a developper with:
python manage.py exportresult -h
Following is an example of a configuration file. you can generate one with:
python manage.py generatetexconf -h
Basic example
generic:
document_option: 11pt
'Test survëy':
document_class: report
questions:
'Lorem ipsum dolor sit amët, <strong> consectetur </strong> adipiscing elit.':
chart:
type: polar
text: pin
'Dolor sit amët, consectetur<strong> adipiscing</strong> elit.':
chart:
type: cloud
text: inside
The pdf is then generated using the very good pgf-pie library.
Sankey diagram
If you installed python3-tk, you can also show the relation between two questions using a sankey diagram :
'Lorem ipsum dolor sit amët, <strong> consectetur </strong> adipiscing elit.':
chart:
type: sankey
question: 'Dolor sit amët, consectetur<strong> adipiscing</strong> elit.'
You get this as a result:
Advanced example
You can also limit the answers shown by cardinality, filter them, group them together and choose the color for each answer or group of answers.
If you use this configuration for the previous question:
'Test survëy':
'Dolor sit amët, consectetur<strong> adipiscing</strong> elit.':
multiple_charts:
'Sub Sub Section with radius=3':
color:
Yës: blue!50
No: red!50
Whatever: red!50!blue!50
radius: 3
'Sub Sub Section with text=pin':
group_together:
Nah:
- No
- Whatever
K.:
- Yës
color:
Nah: blue!33!red!66
K.: blue!50
text: pin
chart:
radius: 1
type: cloud
text: inside
You get this as a result:
Implementing a custom treatment
If you want to make your own treatment you can use your own class, for example.
Configuration:
'Test survëy':
questions:
'Ipsum dolor sit amët, <strong> consectetur </strong> adipiscing elit.':
chart:
type: survey.tests.exporter.tex.CustomQuestion2TexChild
Code in survey.tests.exporter.tex.CustomQuestion2TexChild
:
from survey.exporter.tex.question2tex_chart import Question2TexChart
class CustomQuestion2TexChild(Question2TexChart):
def get_results(self):
self.type = "polar"
return """ 2/There were no answer at all,
3/But we have a custom treatment to show some,
2/You can make minor changes too !"""
Result:
For a full example of a configuration file look at example_conf.yaml
in doc,
you can also generate your configuration file with
python manage.py generatetexconf -h
, it will create the default skeleton
for every survey and question.
Contributing as a developper
Development environment
This is the typical command you should do to get started:
python -m venv venv/ # Create virtualenv
source venv/bin/activate # Activate virtualenv
pip install -e ".[dev]" # Install dev requirements
pre-commit install # Install pre-commit hook framework
python manage.py migrate # Create database
python manage.py loaddata survey/tests/testdump.json # Load test data
python manage.py createsuperuser
python manage.py runserver # Launch server
Committing code
Launching tests
python manage.py test survey
Adding test data
If you want to dump a test database after adding data to it, this is the command to have a minimal diff :
python manage.py dumpdata --format json -e contenttypes -e admin -e auth.Permission
-e sessions.session -e sites.site --natural-foreign --indent 1
-o survey/tests/testdump.json
Launching coverage
coverage run --source=survey --omit=survey/migrations/* ./manage.py test
coverage html
xdg-open htmlcov/index.html
Applying Lint
We're using pre-commit
, it should take care of linting during commit.
Translating the project
Django survey's is available in multiple language. Your contribution would be very appreciated if you know a language that is not yet available.
Language available
The software is developed in english. Other available languages are :
- Chinese thanks to 朱聖黎 (Zhu Sheng Li)
- French thanks to Pierre Sassoulas
- Japanese thanks to Nobukuni Suzue
- Spanish thanks to Javier Ordóñez
- Russian thanks to Vlad M.
As a developper
If your language do not exists add it in the LANGUAGE
variable in the
settings, like here.
Do not forget to credit yourself like in the header seen
here
Then you can translate with :
python manage.py makemessages
# python manage.py createsuperuser ? (You need to login for rosetta)
python manage.py runserver
# Access http://localhost:8000/admin to login
# Then go to http://localhost:8000/rosetta to translate
python manage.py makemessages --no-obsolete --no-wrap
git add survey/locale/
...
If your language is not yet available in rosetta, this stack overflow question should work even for language not handled by django.
As a translator
If you're not a developper, open an issue on github and ask for a .po file in your language. I will generate it for you, so you can edit it with an online editor. I will then create the .po and commit them, so you can edit them with your github account or integrate it myself if you do not have one. You will be credited here.
Credits
Based on jessykate's django-survey, and contribution by jibaku, joshualoving, and ijasperyang in forks of jessykate's project.
We use anazalea's pySankey for sankey's diagram during reporting.
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 Distribution
Hashes for django-survey-and-report-1.3.9.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | f0b8296778c41e982ee11f0876911e26a3d68a4c37fef8d35f9df907a706e1a4 |
|
MD5 | 243d6beff7976f0bbe6719a5e83ed57e |
|
BLAKE2b-256 | 12dbdd724d475f0c8335b2fbc2f9b757d08ebd7cbdabb4c22ba742a025e6bdef |