editApptCalendarEvent.handlebars 674 B

1234567891011121314151617
  1. <form action="{{calendarEvent.appointment_group_url}}" id="edit_appt_calendar_event_form">
  2. <p>
  3. <strong>{{#t "description"}}Description:{{/t}}</strong><br>
  4. <textarea name="description">{{description}}</textarea>
  5. </p>
  6. <p>
  7. <label>
  8. {{checkbox "max_participants_option" id=null}}
  9. {{#ifEqual calendarEvent.participant_type "Group"}}
  10. {{#t}}Limit this slot to <input type="number" name="max_participants" class="max-participants" min="1" disabled> groups.{{/t}}
  11. {{else}}
  12. {{#t}}Limit this slot to <input type="number" name="max_participants" class="max-participants" min="1" disabled> users.{{/t}}
  13. {{/ifEqual}}
  14. </label>
  15. </p>
  16. </form>