﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
35280	iriencode example incorrect	minusf	Can Huynh	"https://docs.djangoproject.com/en/5.0/ref/templates/builtins/#iriencode

  If value is ""?test=1&me=2"", the output will be ""?test=1&amp;me=2"".

This is not the case as by default ""&"" is a safe character for iriencode: https://github.com/django/django/blob/main/django/utils/encoding.py#L135.

It is urlencode that does that conversion. iriencode is more for non-ascii characters in my understanding, and using both at the same time is supported:
{{{
value|urlencode|iriencode
}}}"	Bug	closed	Documentation	5.0	Normal	fixed			Ready for checkin	1	0	0	0	1	0
