﻿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
30738	Misleading multiwidget template example.	Emmanuel Cazenave	Daria Kolodzey	"In https://docs.djangoproject.com/en/2.2/ref/forms/widgets/#django.forms.MultiWidget.get_context the template given as an example includes the multiwidget template instead of including its sub-widget templates.

Instead of :

{{{
{% for subwidget in widget.subwidgets %}
    {% include widget.template_name with widget=subwidget %}
{% endfor %}
}}}

there should be :

{{{
{% for subwidget in widget.subwidgets %}
    {% include subwidget.template_name with widget=subwidget %}
{% endfor %}
}}}"	Cleanup/optimization	closed	Documentation	2.2	Normal	fixed			Ready for checkin	1	0	0	0	1	0
