Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save mitrofun/5ec45192d27117ebf687b418a9cd139d to your computer and use it in GitHub Desktop.

Select an option

Save mitrofun/5ec45192d27117ebf687b418a9cd139d to your computer and use it in GitHub Desktop.
Django shortcut to generate a url w/ query params (for serious)
def reverse_with_queryparams(view, *args, **kwargs):
return reverse(view, args=args) + '?' + urllib.urlencode(kwargs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment