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
values_item.hbs
22 lines
| 1 | <li class="clearfix"> |
| 2 | {{#ifCond type 'in' 'radio,select'}} |
| 3 | <input class="is_checked radio" type="radio" name="" |
| 4 | {{#if is_checked}}checked="checked"{{/if}} value="1"/> |
| 5 | {{else}} |
| 6 | <input class="is_checked checkbox" type="checkbox" name="" |
| 7 | {{#if is_checked}}checked="checked"{{/if}} value="1"/> |
| 8 | {{/ifCond}} |
| 9 | |
| 10 | <input |
| 11 | type="text" |
| 12 | name="" |
| 13 | class="value" |
| 14 | value="{{ value }}" |
| 15 | data-parsley-errors-messages-disabled="true" |
| 16 | data-parsley-required="true" |
| 17 | /> |
| 18 | |
| 19 | {{#ifCond type 'in' 'radio,select'}} |
| 20 | <a class="remove" href="javascript:;"><%= __('Remove') %></a> |
| 21 | {{/ifCond}} |
| 22 | </li> |