It's about passing values from URL to view in django.
URL like this: http:///boards/?board=picture&board=girls
I want get both values "picture" and "girls" that all belongs to board. Store these values to a list or something.
Obviously, request.GET.get('board') can't get two values.
Does anybody get a workaround? Thank you in advance.