MoveDialogSelect.handlebars 489 B

1234567891011121314151617181920212223
  1. <label for="move_select_{{cid}}">{{labelText}}</label>
  2. <select
  3. id="move_select_{{cid}}"
  4. {{#unless lastList}}
  5. class="move_select_parent_collection"
  6. {{/unless}}
  7. >
  8. {{#each items}}
  9. <option
  10. {{#unless ../lastList}}
  11. {{selectedIf ../../assignmentGroupId id}}
  12. {{/unless}}
  13. value="{{id}}"
  14. >
  15. {{name}}
  16. </option>
  17. {{/each}}
  18. {{#if lastList}}
  19. <option value="last">{{#t 'move_to_end'}}-- At the bottom --{{/t}}</option>
  20. {{/if}}
  21. </select>