Files
zulip/static/templates/remind_me_popover_content.hbs
Anders Kaseorg 3c3471b720 templates: Rename *.handlebars ↦ *.hbs and - ↦ _.
Tweaked by tabbott to avoid accidentally disabling the linter for
handlebars templates.

Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2019-07-12 21:11:03 -07:00

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>