[Answer]-Django – Aggregate survey responses into string

1👍

To get you in the right direction. Either create a Question model with a name and a charfield of options. Your form would be created using a ModelForm. That way Django does most of the work for you.

An alternative is to use an external package. django-domande seems like a good survey app.

Leave a comment