Django application for creating polls in a way similar to Google Forms
sudo apt-get install python3 python-dev python3-dev postgres python3-virtualenv libpq-dev postgresql-contrib
virtualenv python -p python3
sudo su - postgres
createdb mydb
createuser -P username
GRANT ALL PRIVILEGES ON DATABASE mydb TO myuser;
Edit django settings respectively.
source python/bin/activate
pip install --upgrade -r pip_requirements.txt
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
Access the server at http://127.0.0.1:8000/admin
- Change questionnaire-question relation to many-to-many, allowing re-using popular questions
- Remove answer fields from questions using only form fields
- Fix and add more validation to questions
- Ordering questions
- Ordering exported answers
- More question types such as date picker
- Widget selection to question
- Fix adding new questions while creating questionnaires
- Create better UI for questionnaires
- Allow using questionnaires in iFrame
- Allow template creation and selection from admin panel
- Allow customising after-submit behaviour
- Add option to download all replies to a questionnaire(s)
- Improve downloads by renaming outputted file and sheets