mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
Tweaked by tabbott to avoid accidentally disabling the linter for handlebars templates. Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
40 lines
959 B
Handlebars
40 lines
959 B
Handlebars
{{! Contents of the "remind me about this actions" popup }}
|
|
<ul class="nav nav-list remind_me_popover">
|
|
<li>
|
|
<a href="#" class="remind in_20m" data-message-id="{{message.id}}">
|
|
{{t "in 20 minutes" }}
|
|
</a>
|
|
</li>
|
|
|
|
<li>
|
|
<a href="#" class="remind in_1h" data-message-id="{{message.id}}">
|
|
{{t "in 1 hour" }}
|
|
</a>
|
|
</li>
|
|
|
|
<li>
|
|
<a href="#" class="remind in_3h" data-message-id="{{message.id}}">
|
|
{{t "in 3 hours" }}
|
|
</a>
|
|
</li>
|
|
|
|
<li>
|
|
<a href="#" class="remind tomo" data-message-id="{{message.id}}">
|
|
{{t "Tomorrow" }}
|
|
</a>
|
|
</li>
|
|
|
|
<li>
|
|
<a href="#" class="remind nxtw" data-message-id="{{message.id}}">
|
|
{{t "Next week" }}
|
|
</a>
|
|
</li>
|
|
|
|
<li>
|
|
<a href="#" class='remind custom' data-message-id="{{message.id}}">
|
|
{{t "Select date and time" }}
|
|
</a>
|
|
</li>
|
|
|
|
</ul>
|