Groups keyboard shortcuts have been updated
Dismiss
See shortcuts

[Django] #25582: reverse() to url including GET parameters: .../myview?foo=bar

43 views
Skip to first unread message

Django

unread,
Oct 21, 2015, 5:03:54 AM10/21/15
to django-...@googlegroups.com
#25582: reverse() to url including GET parameters: .../myview?foo=bar
-----------------------------+--------------------
Reporter: guettli | Owner: nobody
Type: New feature | Status: new
Component: Core (URLs) | Version: 1.8
Severity: Normal | Keywords:
Triage Stage: Unreviewed | Has patch: 0
Easy pickings: 0 | UI/UX: 0
-----------------------------+--------------------
It is a common question on stackoverflow and other places:

How to reverse() to url including GET parameters? Example:
.../myview?foo=bar

http://stackoverflow.com/questions/9585491/how-do-i-pass-get-parameters-
using-django-urlresolvers-reverse

http://stackoverflow.com/a/27641445/633961

It would be very nice if django could implement a short-cut which provides
this.

It would be useful for python code and template, too.

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

Django

unread,
Oct 21, 2015, 11:17:00 AM10/21/15
to django-...@googlegroups.com
#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
-----------------------------+------------------------------------
Changes (by timgraham):

* needs_better_patch: => 0
* needs_tests: => 0
* version: 1.8 => master
* needs_docs: => 0
* stage: Unreviewed => Accepted


Comment:

I'm not positive this is something which should live in Django, but if
not, we could probably at least add some guidance to the docs about how to
go about it. If we do add it, it likely needs a discussion on the
DevelopersMailingList to figure out what the API should look like. See
also #10941 which asks for a template tag for creating query strings in
templates.

--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:1>

Django

unread,
Oct 23, 2015, 4:26:25 AM10/23/15
to django-...@googlegroups.com
#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 DheerendraRathor):

Changing anything in `{% url %}` might create a mess. IMHO creating a new
tag which accept a dictionary or list of tuples will practically serve the
purpose.

--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:2>

Django

unread,
Oct 23, 2015, 7:59:56 AM10/23/15
to django-...@googlegroups.com
#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 spookylukey):

As per my comment on #10941:

I think this whole area is solved by

1) For Python code: urlobject ​https://github.com/zacharyvoase/urlobject/
and furl ​https://github.com/gruns/furl
2) For template code: django-spurl - ​https://github.com/j4mie/django-
spurl

--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:3>

Django

unread,
Oct 23, 2015, 8:10:30 AM10/23/15
to django-...@googlegroups.com
#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

unread,
Feb 25, 2016, 6:52:16 AM2/25/16
to django-...@googlegroups.com
#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):

Unfortunatley urlencode(get) fails if the dictionary get contains unicode.
Related: http://stackoverflow.com/questions/6480723/urllib-urlencode-
doesnt-like-unicode-values-how-about-this-workaround

--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:5>

Django

unread,
Feb 25, 2016, 6:55:42 AM2/25/16
to django-...@googlegroups.com
#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):

Replying to [comment:3 spookylukey]:


> As per my comment on #10941:
>
> I think this whole area is solved by
>
> 1) For Python code: urlobject
https://github.com/zacharyvoase/urlobject/ and furl
https://github.com/gruns/furl
> 2) For template code: django-spurl - ​https://github.com/j4mie/django-
spurl

I would like to see a solution in django core. I guess the django core
developers don't want to pull in a dependency of one of the above
packages.

If urlencode() would support unicode, the fix would be trival. But even
with the current urlencode() of Python 2.7 the issue can be solved in
django core easily.

--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:6>

Django

unread,
Feb 25, 2016, 6:57:44 AM2/25/16
to django-...@googlegroups.com
#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):

Replying to [comment:4 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.
>

Unfortunatley urlencode(get) fails if the dictionary get contains unicode.
Related: http://stackoverflow.com/questions/6480723/urllib-urlencode-
doesnt-like-unicode-values-how-about-this-workaround

--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:7>

Django

unread,
Feb 25, 2016, 7:37:23 AM2/25/16
to django-...@googlegroups.com
#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 timgraham):

The [https://groups.google.com/d/topic/django-
developers/_ZuTpMEATiM/discussion discussion on django-developers] hasn't
yielded a consensus on what the solution should look like.

I closed #26276 as a duplicate -- it suggests adding `query` and
`fragment` parameters to `reverse()`.

--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:8>

Django

unread,
Dec 8, 2017, 2:27:22 PM12/8/17
to django-...@googlegroups.com
#25582: Add a way to build URLs with query strings
--------------------------------+------------------------------------
Reporter: Thomas Güttler | 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 Sina):

Any update on this guys? this is now more than 2 years!!!
Why a MUST have simple feature like this should take two years to
implement?

--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:9>

Django

unread,
Dec 8, 2017, 3:34:48 PM12/8/17
to django-...@googlegroups.com
#25582: Add a way to build URLs with query strings
--------------------------------+------------------------------------
Reporter: Thomas Güttler | 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 Aymeric Augustin):

The reason is explained in the comment just above yours.

Please consider that you're expressing your frustration in a way that's
unlikely to motivate volunteers to work for free for you.

--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:10>

Django

unread,
Feb 1, 2018, 3:36:26 PM2/1/18
to django-...@googlegroups.com
#25582: Add a way to build URLs with query strings
--------------------------------+------------------------------------
Reporter: Thomas Güttler | 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
--------------------------------+------------------------------------
Changes (by Ning):

* cc: Ning (added)


--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:11>

Django

unread,
Sep 25, 2018, 12:48:51 AM9/25/18
to django-...@googlegroups.com
#25582: Add a way to build URLs with query strings
--------------------------------+------------------------------------
Reporter: Thomas Güttler | 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 xtsimpouris):

It feels more like this is missing from core rather than an enhancement. A
URL can be with a query string or without a query string, the same goes
also for fragment and in any case all URLs are assumed to be valid. Having
this in mind, it makes sense that `url` tag should handle all the above
cases by default. That way, it would provide a robust and unified solution
for URL creation, maybe with auto escape features. Now, by trying to write
another tag and/or searching for a solution around the internet feels like
''django can't handle creating valid URLs''?

--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:12>

Django

unread,
Sep 26, 2018, 8:22:34 AM9/26/18
to django-...@googlegroups.com
#25582: Add a way to build URLs with query strings
--------------------------------+------------------------------------
Reporter: Thomas Güttler | 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
--------------------------------+------------------------------------
Changes (by Herbert Fortes):

* cc: Herbert Fortes (added)


--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:13>

Django

unread,
Apr 24, 2019, 12:03:57 PM4/24/19
to django-...@googlegroups.com
#25582: Add a way to build URLs with query strings
--------------------------------+------------------------------------
Reporter: Thomas Güttler | 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
--------------------------------+------------------------------------
Changes (by Will Gordon):

* cc: Will Gordon (added)


--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:14>

Django

unread,
Jun 27, 2019, 9:35:52 AM6/27/19
to django-...@googlegroups.com
#25582: Add a way to build URLs with query strings
--------------------------------+---------------------------------------
Reporter: Thomas Güttler | Owner: Daniel Rios
Type: New feature | Status: assigned

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
--------------------------------+---------------------------------------
Changes (by Daniel Rios):

* owner: nobody => Daniel Rios
* status: new => assigned


--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:15>

Django

unread,
Dec 8, 2019, 2:21:19 PM12/8/19
to django-...@googlegroups.com
#25582: Add a way to build URLs with query strings
--------------------------------+---------------------------------------
Reporter: Thomas Güttler | Owner: Daniel Rios
Type: New feature | Status: assigned
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
--------------------------------+---------------------------------------
Changes (by thenewguy):

* cc: thenewguy (added)


Comment:

Something prettier than `{% url 'admin:login' %}?next={{
request.path|urlencode }}` would be awesome and make templates more
readable

--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:16>

Django

unread,
Dec 17, 2021, 1:37:14 PM12/17/21
to django-...@googlegroups.com
#25582: Add a way to build URLs with query strings
--------------------------------+---------------------------------------
Reporter: Thomas Güttler | Owner: Daniel Rios
Type: New feature | Status: assigned
Component: Core (URLs) | Version: dev

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
--------------------------------+---------------------------------------
Changes (by Carsten Fuchs):

* cc: Carsten Fuchs (added)


--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:17>

Django

unread,
Jun 1, 2023, 7:02:02 AM6/1/23
to django-...@googlegroups.com
#25582: Add a way to build URLs with query strings
--------------------------------+---------------------------------------
Reporter: Thomas Güttler | Owner: Daniel Rios
Type: New feature | Status: assigned
Component: Core (URLs) | Version: dev
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 Daniel Rios):

Hi- I am at the sprints of DjangoConEU 2023 and have rediscovered this
ticket I assigned to myself long ago. I am restarting working on it!

--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:18>

Django

unread,
Nov 13, 2023, 7:58:51 AM11/13/23
to django-...@googlegroups.com
#25582: Add a way to build URLs with query strings
--------------------------------+---------------------------------------
Reporter: Thomas Güttler | Owner: Daniel Rios
Type: New feature | Status: assigned
Component: Core (URLs) | Version: dev
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
--------------------------------+---------------------------------------
Changes (by Tom Carrick):

* cc: Tom Carrick (added)


--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:19>

Django

unread,
Nov 24, 2023, 6:46:30 AM11/24/23
to django-...@googlegroups.com
#25582: Add a way to build URLs with query strings
--------------------------------+---------------------------------------
Reporter: Thomas Güttler | Owner: Daniel Rios
Type: New feature | Status: assigned
Component: Core (URLs) | Version: dev
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
--------------------------------+---------------------------------------
Changes (by Sage Abdullah):

* cc: Sage Abdullah (added)


--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:20>

Django

unread,
Nov 1, 2024, 10:03:35 AM11/1/24
to django-...@googlegroups.com
#25582: Add a way to build URLs with query strings
--------------------------------+------------------------------------
Reporter: Thomas Güttler | Owner: (none)
Type: New feature | Status: new
Component: Core (URLs) | Version: dev
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
--------------------------------+------------------------------------
Changes (by Daniel Rios):

* owner: Daniel Rios => (none)
* status: assigned => new

--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:21>

Django

unread,
Nov 26, 2024, 2:27:50 AM11/26/24
to django-...@googlegroups.com
#25582: Add a way to build URLs with query strings
--------------------------------+-------------------------------------
Reporter: Thomas Güttler | Owner: Ben Cardy
Type: New feature | Status: assigned
Component: Core (URLs) | Version: dev
Severity: Normal | Resolution:
Keywords: | Triage Stage: Accepted
Has patch: 1 | Needs documentation: 0
Needs tests: 0 | Patch needs improvement: 0
Easy pickings: 0 | UI/UX: 0
--------------------------------+-------------------------------------
Changes (by Ben Cardy):

* has_patch: 0 => 1
* owner: (none) => Ben Cardy
* status: new => assigned

Comment:

Picked this up. Initial [https://github.com/django/django/pull/18848 PR]
and started a [https://forum.djangoproject.com/t/first-ticket-adding-
querystring-and-url-fragment-support-to-reverse/36732/ forum discussion].
--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:22>

Django

unread,
Nov 28, 2024, 5:02:56 AM11/28/24
to django-...@googlegroups.com
#25582: Add a way to build URLs with query strings
--------------------------------+-------------------------------------
Reporter: Thomas Güttler | Owner: Ben Cardy
Type: New feature | Status: assigned
Component: Core (URLs) | Version: dev
Severity: Normal | Resolution:
Keywords: | Triage Stage: Accepted
Has patch: 1 | Needs documentation: 1
Needs tests: 0 | Patch needs improvement: 1
Easy pickings: 0 | UI/UX: 0
--------------------------------+-------------------------------------
Changes (by Sarah Boyce):

* needs_better_patch: 0 => 1
* needs_docs: 0 => 1

--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:23>

Django

unread,
Nov 28, 2024, 5:39:08 AM11/28/24
to django-...@googlegroups.com
#25582: Add a way to build URLs with query strings
--------------------------------+-------------------------------------
Reporter: Thomas Güttler | Owner: Ben Cardy
Type: New feature | Status: assigned
Component: Core (URLs) | Version: dev
Severity: Normal | Resolution:
Keywords: | Triage Stage: Accepted
Has patch: 1 | Needs documentation: 0
Needs tests: 0 | Patch needs improvement: 0
Easy pickings: 0 | UI/UX: 0
--------------------------------+-------------------------------------
Changes (by Ben Cardy):

* needs_better_patch: 1 => 0
* needs_docs: 1 => 0

--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:24>

Django

unread,
Dec 6, 2024, 9:13:08 AM12/6/24
to django-...@googlegroups.com
#25582: Add a way to build URLs with query strings
--------------------------------+-------------------------------------
Reporter: Thomas Güttler | Owner: Ben Cardy
Type: New feature | Status: assigned
Component: Core (URLs) | Version: dev
Severity: Normal | Resolution:
Keywords: | Triage Stage: Accepted
Has patch: 1 | Needs documentation: 0
Needs tests: 0 | Patch needs improvement: 1
Easy pickings: 0 | UI/UX: 0
--------------------------------+-------------------------------------
Changes (by Sarah Boyce):

* needs_better_patch: 0 => 1

--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:25>

Django

unread,
Dec 10, 2024, 10:41:23 AM12/10/24
to django-...@googlegroups.com
#25582: Add a way to build URLs with query strings
--------------------------------+-------------------------------------
Reporter: Thomas Güttler | Owner: Ben Cardy
Type: New feature | Status: assigned
Component: Core (URLs) | Version: dev
Severity: Normal | Resolution:
Keywords: | Triage Stage: Accepted
Has patch: 1 | Needs documentation: 0
Needs tests: 0 | Patch needs improvement: 0
Easy pickings: 0 | UI/UX: 0
--------------------------------+-------------------------------------
Changes (by Ben Cardy):

* needs_better_patch: 1 => 0

--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:26>

Django

unread,
Dec 11, 2024, 5:09:04 AM12/11/24
to django-...@googlegroups.com
#25582: Add a way to build URLs with query strings
-------------------------------------+-------------------------------------
Reporter: Thomas Güttler | Owner: Ben Cardy
Type: New feature | Status: assigned
Component: Core (URLs) | Version: dev
Severity: Normal | Resolution:
Keywords: | Triage Stage: Ready for
| checkin
Has patch: 1 | Needs documentation: 0
Needs tests: 0 | Patch needs improvement: 0
Easy pickings: 0 | UI/UX: 0
-------------------------------------+-------------------------------------
Changes (by Sarah Boyce):

* stage: Accepted => Ready for checkin

--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:27>

Django

unread,
Dec 11, 2024, 2:40:42 PM12/11/24
to django-...@googlegroups.com
#25582: Add a way to build URLs with query strings
-------------------------------------+-------------------------------------
Reporter: Thomas Güttler | Owner: Ben Cardy
Type: New feature | Status: closed
Component: Core (URLs) | Version: dev
Severity: Normal | Resolution: fixed
Keywords: | Triage Stage: Ready for
| checkin
Has patch: 1 | Needs documentation: 0
Needs tests: 0 | Patch needs improvement: 0
Easy pickings: 0 | UI/UX: 0
-------------------------------------+-------------------------------------
Changes (by GitHub <noreply@…>):

* resolution: => fixed
* status: assigned => closed

Comment:

In [changeset:"f30b527f170fd4ec9bf10b5012e1ef79776a8f8e" f30b527]:
{{{#!CommitTicketReference repository=""
revision="f30b527f170fd4ec9bf10b5012e1ef79776a8f8e"
Fixed #25582 -- Added support for query and fragment to
django.urls.reverse().
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/25582#comment:28>
Reply all
Reply to author
Forward
0 new messages