templates: enclose "manual address" checkbox text in a <span> (#43433)

This commit is contained in:
Frédéric Péters 2020-05-29 13:53:03 +02:00
parent 949cfce3b4
commit b68ea5b38d
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@
{{ block.super }}
{% if not widget.readonly %}
<div>
<label><input id="wcs-manual-address" type="checkbox">{% trans "Manually enter the address" %}</label>
<label><input id="wcs-manual-address" type="checkbox"><span>{% trans "Manually enter the address" %}</span></label>
</div>
{% endif %}
{% endblock %}