phpmyadmin/resources/templates/config/form_display/errors.twig
Maurício Meneghini Fauth b2b53c6e18
Move ./templates directory to ./resources/templates
- Related to https://github.com/phpmyadmin/phpmyadmin/issues/18512

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2023-10-17 13:57:07 -03:00

7 lines
119 B
Twig

<dl>
<dt>{{ name }}</dt>
{% for error in error_list %}
<dd>{{ error|raw }}</dd>
{% endfor %}
</dl>