templates/modules/search-widget/journey/datetime-select.html.twig line 1

Open in your IDE?
  1. <select class="is-Combobox" name="timePreference" id="is-TimePreference-Select" aria-label="{{ 'journey.time_preference.label' | trans }}">
  2. <option value="NOW" {% if datetimeOption is not defined or (datetimeOption is defined and datetimeOption == 'NOW') %}selected="selected"{% endif %}>
  3. {{ 'time_options.now'|trans }}
  4. </option>
  5. <option value="LEAVE_AT" {% if datetimeOption is defined and datetimeOption == 'LEAVE_AT' %}selected="selected"{% endif %}>
  6. {{ 'time_options.leave_at'|trans }}
  7. </option>
  8. <option value="ARRIVE_AT" {% if datetimeOption is defined and datetimeOption == 'ARRIVE_AT' %}selected="selected"{% endif %}>
  9. {{ 'time_options.arrive_at'|trans }}
  10. </option>
  11. </select>