mirror of https://github.com/zulip/zulip.git
76 lines
2.7 KiB
Handlebars
76 lines
2.7 KiB
Handlebars
{{! Contents of the "message actions" popup }}
|
|
<ul class="nav nav-list actions_popover pull-right">
|
|
<li>
|
|
<a href="#" class="popover_edit_message" data-message-id="{{message.id}}">
|
|
{{! Can consider http://fontawesome.io/icon/file-code-o/ when we upgrade to font awesome 4.}}
|
|
<i class="{{#if use_edit_icon}}fa fa-pencil{{else}}fa fa-file-text-o{{/if}}" aria-hidden="true"></i> {{editability_menu_item}}
|
|
</a>
|
|
</li>
|
|
|
|
<li>
|
|
<a href="#" class="respond_button" data-message-id="{{message.id}}">
|
|
<i class="fa fa-reply" aria-hidden="true"></i> {{t "Quote and reply" }}
|
|
</a>
|
|
</li>
|
|
|
|
<li>
|
|
<a href="#" class="popover_toggle_collapse" data-message-id="{{message.id}}">
|
|
<i class="{{#if message.collapsed}}fa fa-plus{{else}}fa fa-minus{{/if}}" aria-hidden="true"></i>
|
|
{{#if message.collapsed}}{{t "Un-collapse" }}{{else}}{{t "Collapse" }}{{/if}}
|
|
</a>
|
|
</li>
|
|
|
|
{{#if should_display_edit_history_option}}
|
|
<li>
|
|
<a href="#" class="view_edit_history" data-msgid="{{message.id}}">
|
|
<i class="fa fa-clock-o" aria-hidden="true"></i>
|
|
{{t "View edit history" }}
|
|
</a>
|
|
</li>
|
|
{{/if}}
|
|
{{#if should_display_delete_option}}
|
|
<li>
|
|
<a href="#" class="delete_message" data-message-id="{{message.id}}">
|
|
<i class="fa fa-times" aria-hidden="true"></i>
|
|
{{t "Delete message" }}
|
|
</a>
|
|
</li>
|
|
{{/if}}
|
|
{{#if can_mute_topic}}
|
|
<li>
|
|
<a href="#" class="popover_mute_topic" data-msg-stream="{{message.stream}}" data-msg-topic="{{message.subject}}">
|
|
<i class="fa fa-eye-slash" aria-hidden="true"></i>
|
|
{{#tr message}}Mute the topic <b>__subject__</b>{{/tr}}
|
|
</a>
|
|
</li>
|
|
{{/if}}
|
|
|
|
{{#if can_unmute_topic}}
|
|
<li>
|
|
<a href="#" class="popover_unmute_topic" data-msg-stream="{{message.stream}}" data-msg-topic="{{message.subject}}">
|
|
<i class="fa fa-eye" aria-hidden="true"></i>
|
|
{{#tr message}}Unmute the topic <b>__subject__</b>{{/tr}}
|
|
</a>
|
|
</li>
|
|
{{/if}}
|
|
|
|
{{#if should_display_add_reaction_option}}
|
|
<li>
|
|
<a href="#" class="reaction_button" data-message-id="{{message.id}}">
|
|
<i class="fa fa-smile-o" aria-hidden="true"></i>
|
|
{{#tr message}}Add emoji reaction{{/tr}}
|
|
</a>
|
|
</li>
|
|
{{/if}}
|
|
|
|
<li>
|
|
<a href="#" class="copy_link" data-message-id="{{message.id}}" data-clipboard-text="{{ conversation_time_uri }}">
|
|
<i class="fa fa-link" aria-hidden="true"></i> {{t "Copy link to conversation" }}
|
|
</a>
|
|
</li>
|
|
|
|
{{#if message.historical}}
|
|
<li class="small">({{t "Message sent when you were not subscribed" }})</li>
|
|
{{/if}}
|
|
</ul>
|