2020-06-12 12:46:30 +02:00
|
|
|
<tr id="recent_topic:{{topic_key}}" data-unread-count="{{unread_count}}" data-muted="{{muted}}" data-participated="{{participated}}">
|
2020-05-22 08:16:08 +02:00
|
|
|
<td class="recent_topic_stream">
|
2020-05-26 10:33:35 +02:00
|
|
|
<span id="stream_sidebar_privacy_swatch_{{stream_id}}" class="stream-privacy filter-icon" style="color: {{stream_color}}">
|
|
|
|
{{> stream_privacy }}
|
|
|
|
</span>
|
2020-05-22 08:16:08 +02:00
|
|
|
<a href="{{stream_url}}">{{stream}}</a>
|
|
|
|
</td>
|
|
|
|
<td class="recent_topic_name">
|
|
|
|
<a href="{{topic_url}}">{{topic}}</a>
|
2020-06-13 17:14:13 +02:00
|
|
|
{{#if unread_count}}<span class="recent_topic_unread_count">{{unread_count}}</span>{{/if}}
|
2020-05-22 08:16:08 +02:00
|
|
|
</td>
|
|
|
|
<td class="recent_topic_actions">
|
2020-05-29 17:22:53 +02:00
|
|
|
{{#if topic_muted}}
|
|
|
|
<i class="fa fa-bell-slash on_hover_topic_unmute recipient_bar_icon" data-stream-id="{{stream_id}}" data-topic-name="{{topic}}" title="{{t 'Unmute topic' }}" role="button" tabindex="0" aria-label="{{t 'Mute topic' }}"></i>
|
|
|
|
{{else}}
|
2020-05-22 08:16:08 +02:00
|
|
|
<i class="fa fa-bell-slash on_hover_topic_mute recipient_bar_icon" data-stream-id="{{stream_id}}" data-topic-name="{{topic}}" title="{{t 'Mute topic' }}" role="button" tabindex="0" aria-label="{{t 'Mute topic' }}"></i>
|
2020-05-29 17:22:53 +02:00
|
|
|
{{/if}}
|
2020-05-22 20:55:29 +02:00
|
|
|
<i class="fa fa-check-circle on_hover_topic_read recipient_bar_icon" data-stream-id="{{stream_id}}" data-topic-name="{{topic}}" title="{{t 'Mark as read' }}" role="button" tabindex="0" aria-label="{{t 'Mark as read' }}"></i>
|
2020-05-22 08:16:08 +02:00
|
|
|
</td>
|
|
|
|
<td class='recent_topic_users'>
|
2020-05-22 21:04:03 +02:00
|
|
|
<ul class="recent_avatars">
|
2020-06-12 12:07:48 +02:00
|
|
|
{{#if other_senders_count}}
|
2020-05-22 21:04:03 +02:00
|
|
|
<li class="recent_avatars_item">
|
2020-06-12 12:07:48 +02:00
|
|
|
<span class="recent_avatars_others">+{{other_senders_count}}</span>
|
2020-05-22 21:04:03 +02:00
|
|
|
</li>
|
|
|
|
{{/if}}
|
|
|
|
{{#each senders}}
|
|
|
|
<li class="recent_avatars_item" title="{{this.full_name}}">
|
|
|
|
<img src="{{this.avatar_url_small}}" class="recent_avatars_img" />
|
|
|
|
</li>
|
|
|
|
{{/each}}
|
|
|
|
</ul>
|
2020-05-22 08:16:08 +02:00
|
|
|
</td>
|
|
|
|
<td class="recent_topic_timestamp">
|
|
|
|
{{ last_msg_time }}
|
|
|
|
</td>
|
|
|
|
</tr>
|