#25582: Add a way to build URLs with query strings
-----------------------------+------------------------------------
     Reporter:  guettli      |                    Owner:  nobody
         Type:  New feature  |                   Status:  new
    Component:  Core (URLs)  |                  Version:  master
     Severity:  Normal       |               Resolution:
     Keywords:               |             Triage Stage:  Accepted
    Has patch:  0            |      Needs documentation:  0
  Needs tests:  0            |  Patch needs improvement:  0
Easy pickings:  0            |                    UI/UX:  0
-----------------------------+------------------------------------

Comment (by guettli):

 @spookylukey for me this ticket is solved by this:

 {{{
 def reverse(*args, **kwargs):
     get = kwargs.pop('get', {})
     url = orig_reverse(*args, **kwargs)
     if get:
         url += '?' + urllib.urlencode(get)
     return url
 }}}

 It is not difficult. The question is if it will be handy in django core.

--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:4>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/065.186816c4ba07c2565c1d48c1d67d06d6%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to