atst/templates/components/checkbox_input.html
2019-09-10 13:16:16 -04:00

31 lines
911 B
HTML

{% macro CheckboxInput(
field,
label=field.label,
inline=False,
classes="") -%}
<checkboxinput
name='{{ field.name }}'
inline-template
key='{{ field.name }}'
v-bind:initial-checked='{{ field.data|string|lower }}'
>
<div>
<div class='usa-input {{ classes }} {% if field.errors %}usa-input--error{% endif %}' v-bind:class="[{ 'checked': isChecked }]">
<fieldset data-ally-disabled="true" v-on:change="onInput" class="usa-input__choices {% if inline %}usa-input__choices--inline{% endif %}">
<legend>
{{ field(**{"v-model": "isChecked"}) }}
{{ label | safe }}
{% if field.description %}
<p class='usa-input__help'>
{{ field.description | safe }}
</p>
{% endif %}
</legend>
</fieldset>
</div>
</div>
</checkboxinput>
{%- endmacro %}