0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-29 17:36:49 +01:00

Fix malformed HTML: missing bracket in deprecated template

This commit is contained in:
Thibaud Colas 2019-05-09 10:21:47 +01:00
parent 4a9886debd
commit f7aff62fad

View File

@ -23,7 +23,7 @@
<div class="actions">
{% if not field.field.required %}
<button type="button" class="button action-clear button-small button-secondary">{{ field.field.widget.clear_choice_text }}</button
<button type="button" class="button action-clear button-small button-secondary">{{ field.field.widget.clear_choice_text }}</button>
{% endif %}
<button type="button" class="button action-choose button-small button-secondary">{{ field.field.widget.choose_another_text }}</button>
</div>