How to handle request.GET with multiple variables for the same parameter in Django
You want the getlist() function of the GET object:
request.GET.getlist('myvar')
You want the getlist() function of the GET object:
request.GET.getlist('myvar')