2019-02-22 12:28:29 +01:00
|
|
|
{{! Contents of the "starred messages sidebar" popup }}
|
|
|
|
<ul class="nav nav-list">
|
2020-07-10 20:25:24 +02:00
|
|
|
{{! tabindex="0" Makes anchor tag focusable. Needed for keyboard support. }}
|
2021-03-05 09:48:15 +01:00
|
|
|
{{#if show_unstar_all_button}}
|
2019-02-22 12:28:29 +01:00
|
|
|
<li>
|
2020-07-10 20:25:24 +02:00
|
|
|
<a tabindex="0" id="unstar_all_messages">
|
2019-02-22 12:28:29 +01:00
|
|
|
<i class="fa fa-star-o" aria-hidden="true"></i>
|
2021-04-14 03:04:02 +02:00
|
|
|
{{#tr}}Unstar all messages{{/tr}}
|
2019-02-22 12:28:29 +01:00
|
|
|
</a>
|
|
|
|
</li>
|
2021-03-05 09:48:15 +01:00
|
|
|
{{/if}}
|
2019-03-18 17:46:07 +01:00
|
|
|
<li>
|
2020-07-10 20:25:24 +02:00
|
|
|
<a tabindex="0" id="toggle_display_starred_msg_count">
|
2019-03-18 17:46:07 +01:00
|
|
|
{{#if starred_message_counts}}
|
|
|
|
<i class="fa fa-eye-slash" aria-hidden="true"></i>
|
2021-04-14 03:04:02 +02:00
|
|
|
{{#tr}}Hide starred message count{{/tr}}
|
2019-03-18 17:46:07 +01:00
|
|
|
{{else}}
|
|
|
|
<i class="fa fa-eye" aria-hidden="true"></i>
|
2021-04-14 03:04:02 +02:00
|
|
|
{{#tr}}Show starred message count{{/tr}}
|
2019-03-18 17:46:07 +01:00
|
|
|
{{/if}}
|
|
|
|
</a>
|
|
|
|
</li>
|
2019-02-22 12:28:29 +01:00
|
|
|
</ul>
|