How do I get multiple values from checkboxes in Django

NazimZeeshan picture NazimZeeshan · Dec 5, 2010 · Viewed 28.9k times · Source

I want to get values of a multiple select check box using request.POST['xzy'] as a list. Here is my model and template code.

My Model

class Recommend(models.Model):
  user=models.ForeignKey(User)
  book=models.ForeignKey(BookModel)
  friends=models.ManyToManyField(User, related_name="recommended")

My Template

{% for friend in friends %}

<input type="checkbox" name="recommendations" id="option{{friend.id}}" value={{friend.username}} />
<label for="option{{friend.id}}"><b>{{friend.username}}</b></label><br />

{% endfor %}

My View code

if request.method == 'POST': 
  recommendations=request.POST['recommendations']

Here I want 'recommendations' to be a list containing all friend ids but here it is just getting overwritten and only contains the value that got assigned in the last for loop iteration. How can I solve this problem. Need help desperately. Thank You.

Answer

Ignacio Vazquez-Abrams picture Ignacio Vazquez-Abrams · Dec 5, 2010
request.POST.getlist('recommendations')