You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
I need to create a survey like website. Users should be able to register and then are presented with different images which they are asked questions about.
So essentially I have multiple Sets of Images, a set of questions (not all questions are valid for all sets of images) and a set of answers. Answers can be either pre-filled strings (for example question about gender: male / female) or an int value from 0 to 7.
Later on I need to figure out who gave which answers for which image and I need to count all answers for a specific question and image combination to calculate how many people voted for male for example and give an average number as result for other questions.
Is this possible to create with Django? So far I did do the tutorial and tried creating my own models and some basic views but I'm having some trouble with my model already.
Andreas Kuhne
unread,
Nov 4, 2014, 7:22:31 AM11/4/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
Hi Tobias,
Yes that is possible. Anything you can do on the Internet is probably possible in Django. You will of course have to create your own models, views and templates. You could also search (on google) for a django plugin that has some of the features that you want (for example: https://code.google.com/p/django-survey/ could have some features that you would like?).