DaySubstitution.handlebars 920 B

1234567891011121314151617
  1. <label class="control-label"><strong>{{#t "move_from"}}Move from{{/t}}</strong></label>
  2. <div class="controls">
  3. <select class="currentDay span3" title="{{#t "move_from_select_title"}}Move from day of the week{{/t}}" aria-label="{{#t "move_from_select_label"}}Move from day of the week{{/t}}">
  4. {{#each weekdays}}
  5. <option value="{{index}}">{{name}}</option>
  6. {{/each}}
  7. </select>
  8. {{#t 'to_happen_on'}}to{{/t}}
  9. <select class="subDay span3" title="{{#t "move_to_select_title"}}Move to day of the week{{/t}}" aria-label="{{#t "move_to_select_label"}}Move to day of the week{{/t}}">
  10. {{#each weekdays}}
  11. <option value="{{index}}">{{name}}</option>
  12. {{/each}}
  13. </select>
  14. <a href="#" aria-label="{{#t "remove_day_substitution_link_label"}}Remove day substitution{{/t}}" title="{{#t "remove_day_substitution_link"}}Remove day substitution{{/t}}"><i class="icon-end plain"></i></a>
  15. </div>
  16. <br />