2023-05-15 14:44:03 +02:00
|
|
|
<div id="send_later_options">
|
2024-07-15 09:37:33 +02:00
|
|
|
<ul class="send_later_list">
|
2023-05-10 11:46:09 +02:00
|
|
|
{{#if possible_send_later_today}}
|
|
|
|
{{#each possible_send_later_today}}
|
|
|
|
<li>
|
2024-07-15 09:37:33 +02:00
|
|
|
<a id="{{@key}}" class="send_later_today send_later_option" data-send-stamp="{{this.stamp}}" tabindex="0">{{this.text}}</a>
|
2023-05-10 11:46:09 +02:00
|
|
|
</li>
|
|
|
|
{{/each}}
|
|
|
|
{{/if}}
|
|
|
|
{{#each send_later_tomorrow}}
|
|
|
|
<li>
|
2024-07-15 09:37:33 +02:00
|
|
|
<a id="{{@key}}" class="send_later_tomorrow send_later_option" data-send-stamp="{{this.stamp}}" tabindex="0">{{this.text}}</a>
|
2023-05-10 11:46:09 +02:00
|
|
|
</li>
|
|
|
|
{{/each}}
|
|
|
|
{{#if possible_send_later_monday }}
|
|
|
|
{{#each possible_send_later_monday}}
|
|
|
|
<li>
|
2024-07-15 09:37:33 +02:00
|
|
|
<a id="{{@key}}" class="send_later_monday send_later_option" data-send-stamp="{{this.stamp}}" tabindex="0">{{this.text}}</a>
|
2023-05-10 11:46:09 +02:00
|
|
|
</li>
|
|
|
|
{{/each}}
|
|
|
|
{{/if}}
|
|
|
|
<li>
|
2024-07-15 09:37:33 +02:00
|
|
|
<a class="send_later_custom send_later_option" tabindex="0">{{t 'Custom time'}}</a>
|
2023-05-10 11:46:09 +02:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|