2023-10-23 21:12:18 +02:00
|
|
|
<ul class="nav nav-list">
|
2023-11-02 21:35:07 +01:00
|
|
|
{{#if is_home_view}}
|
|
|
|
<li>
|
|
|
|
{{! tabindex="0" Makes anchor tag focusable. Needed for keyboard support. }}
|
|
|
|
<a tabindex="0" id="mark_all_messages_as_read">
|
|
|
|
<i class="fa fa-book" aria-hidden="true"></i>
|
|
|
|
{{t "Mark all messages as read" }}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{/if}}
|
|
|
|
{{#unless is_home_view}}
|
2023-10-23 21:12:18 +02:00
|
|
|
<li>
|
2023-10-23 09:02:57 +02:00
|
|
|
<a tabindex="0" class="set-home-view" data-view-code="{{view_code}}">
|
2023-10-23 21:12:18 +02:00
|
|
|
<i class="fa fa-home" aria-hidden="true"></i>
|
2023-10-24 06:04:04 +02:00
|
|
|
{{#tr}}
|
|
|
|
Make <b>recent conversation</b> my home view
|
|
|
|
{{/tr}}
|
2023-10-23 21:12:18 +02:00
|
|
|
</a>
|
|
|
|
</li>
|
2023-11-02 21:35:07 +01:00
|
|
|
{{/unless}}
|
2023-10-23 21:12:18 +02:00
|
|
|
</ul>
|