Search Results

11
votes

Django: Capturing url parameters in request.GET

If your url is something like http://domain/search/?q=haha, then you would use request.GET.get('q', ''). q is the para …