Hi,
I want to submit a form (by POST) that will submit N (unknown) user_id's. Can I make a view receive those ids as a list?
For example
def getids(request,list):
for id in list:
usr = User.objects.get(pk=id);
//do something with it.
usr.save()
Is
for id in request.POST['id']:
even possible?
I'm looking for the best accepted way.