phpmyadmin/templates/radio_fields.twig
Maurício Meneghini Fauth 8cc6f9f908 Port some templates to Twig
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
2017-04-23 16:53:19 -03:00

12 lines
401 B
Twig

{% if class is not empty %}
<div class="{{ class }}">
{% endif %}
<input type="radio" name="{{ html_field_name }}" id="{{ html_field_id|raw }}" value="{{ choice_value }}"{{ checked ? ' checked="checked"' }} />
<label for="{{ html_field_id|raw }}">{{ (escape_label ? choice_label|e : choice_label)|raw }}</label>
{% if is_line_break %}
<br />
{% endif %}
{% if class is not empty %}
</div>
{% endif %}