In a Django view you can access the request.GET[\'variablename\'], so in your view you can do something like this:
request.GET[\'variablename\']
myvar = request.GET[\'myvar\'
You want the getlist() function of the GET object:
request.GET.getlist('myvar')