i´m having some trouble with a MultiValueDict and hope that somebody can help me.
my request.POST looks like this:
{'body': ['some body text'], 'project': ['1'], 'note': ['1'], 'user':
['[EMAIL PROTECTED]', '[EMAIL PROTECTED]', '[EMAIL PROTECTED]'],
'byuser': ['1']}
now i´m trying to get all "users" to send them an email.
but with something like post_data["user"] i only get "[EMAIL PROTECTED]".
so, how can i get all the values for "user" within my dict?
patrick

