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
segment_selection_item.hbs
13 lines
| 1 | {{#each segments}} |
| 2 | <li data-segment="{{ id }}"> |
| 3 | <label> |
| 4 | <input class="mailpoet_segment_id" type="hidden" value="{{ id }}" /> |
| 5 | <input class="mailpoet_is_checked" type="checkbox" value="1" |
| 6 | {{#ifCond is_checked '>' 0}}checked="checked"{{/ifCond}} /> |
| 7 | <input class="mailpoet_segment_name" type="hidden" value="{{ name }}" /> |
| 8 | {{ name }} |
| 9 | </label> |
| 10 | <a class="remove" href="javascript:;"><%= __('Remove') %></a> |
| 11 | <a class="handle" href="javascript:;"><%= __('Move') %></a> |
| 12 | </li> |
| 13 | {{/each}} |