mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
18 lines
566 B
HTML
18 lines
566 B
HTML
{% macro yes_no(name, label, current_value=None) %}
|
|
<fieldset class='yes-no'>
|
|
<legend class='yes-no-label'>
|
|
{{ label }}
|
|
</legend>
|
|
<div class='yes-no-fields inline'>
|
|
<label class='block-label'>
|
|
<input type='radio' name='{{ name }}' value='yes' {% if current_value == True %}checked{% endif %} />
|
|
Yes
|
|
</label>
|
|
<label class='block-label'>
|
|
<input type='radio' name='{{ name }}' value='no' {% if current_value == False %}checked{% endif %} />
|
|
No
|
|
</label>
|
|
</div>
|
|
</fieldset>
|
|
{% endmacro %}
|