1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

Fixed #28890 -- Removed newlines between MultiWidget's subwidgets.

Regression in b52c73008a.
This commit is contained in:
Nick Pope
2017-12-05 14:42:10 +00:00
committed by Tim Graham
parent dfeb19121b
commit e014f91a70
5 changed files with 13 additions and 4 deletions

View File

@@ -1 +1 @@
{% for widget in widget.subwidgets %}{% include widget.template_name %}{% endfor %}
{% for widget in widget.subwidgets -%}{% include widget.template_name %}{%- endfor %}

View File

@@ -1 +1 @@
{% for widget in widget.subwidgets %}{% include widget.template_name %}{% endfor %}
{% spaceless %}{% for widget in widget.subwidgets %}{% include widget.template_name %}{% endfor %}{% endspaceless %}