Hi all :)
I'm processing a user submitted form. In that the user will answer a
series of multiple choice questions. Depending on the question "id"
which are submitted I'll find the compare the values and increment the
score to count his marks.
The question ids are keys from the dictionary request.POST. But it is
showing an error the list indices must be integers not unicode. I
wrote the code as follows.
// In the view function
if request.method=="POST":
data = reques.POST
temp_list = data.keys()
id_list = []
for i in temp_list:
id_list.append(id_list[i])
questions = MyModel.objects.filter(id__in = id_list)
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en.