summaryrefslogtreecommitdiff
path: root/django/forms/templates
diff options
context:
space:
mode:
authorNick Pope <nick.pope@flightdataservices.com>2017-12-05 14:42:10 +0000
committerTim Graham <timograham@gmail.com>2017-12-05 11:22:36 -0500
commite014f91a70aa3ccdddb363a733c76e35597424fa (patch)
tree799bb94ef6de00c66dd67ae3cb035c76c06b4688 /django/forms/templates
parentdfeb19121b40cadd22b81c4b9d0373d617a695ed (diff)
Fixed #28890 -- Removed newlines between MultiWidget's subwidgets.
Regression in b52c73008a9d67e9ddbb841872dc15cdd3d6ee01.
Diffstat (limited to 'django/forms/templates')
-rw-r--r--django/forms/templates/django/forms/widgets/multiwidget.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/forms/templates/django/forms/widgets/multiwidget.html b/django/forms/templates/django/forms/widgets/multiwidget.html
index 0030711182..7e687a136b 100644
--- a/django/forms/templates/django/forms/widgets/multiwidget.html
+++ b/django/forms/templates/django/forms/widgets/multiwidget.html
@@ -1 +1 @@
-{% for widget in widget.subwidgets %}{% include widget.template_name %}{% endfor %}
+{% spaceless %}{% for widget in widget.subwidgets %}{% include widget.template_name %}{% endfor %}{% endspaceless %}