date_default.hbs
4 years ago
date_formats.hbs
4 years ago
date_types.hbs
4 years ago
field.hbs
4 years ago
field_form.hbs
4 years ago
index.php
3 years ago
label.hbs
4 years ago
label_within.hbs
4 years ago
required.hbs
4 years ago
segment_selection.hbs
2 years ago
segment_selection_item.hbs
4 years ago
submit.hbs
4 years ago
validate.hbs
4 years ago
values.hbs
4 years ago
values_item.hbs
4 years ago
required.hbs
20 lines
| 1 | <p class="clearfix"> |
| 2 | <label><%= __('Is this field mandatory?') %></label> |
| 3 | <span class="group"> |
| 4 | <label> |
| 5 | <input type="radio" |
| 6 | class="mailpoet_radio" |
| 7 | name="params[required]" |
| 8 | value="1" |
| 9 | {{#if params.required}}checked="checked"{{/if}} /><%= __('Yes') %> |
| 10 | </label> |
| 11 | <label> |
| 12 | <input |
| 13 | class="mailpoet_radio" |
| 14 | type="radio" |
| 15 | name="params[required]" |
| 16 | value="" |
| 17 | {{#unless params.required}}checked="checked"{{/unless}} /><%= __('No') %> |
| 18 | </label> |
| 19 | </span> |
| 20 | </p> |