mirror of https://github.com/zulip/zulip.git
24 lines
918 B
Handlebars
24 lines
918 B
Handlebars
|
<tr id="recent_topic:{{stream_id}}:{{topic}}" {{#if hidden}}style="display:none;"{{/if}}>
|
||
|
<td class="recent_topic_unread_count">
|
||
|
{{#if unread_count}}
|
||
|
{{unread_count}}
|
||
|
{{else}}
|
||
|
<i class="fa fa-check-circle" title="{{t 'All messages read' }}" aria-hidden="true"></i>
|
||
|
{{/if}}
|
||
|
</td>
|
||
|
<td class="recent_topic_stream">
|
||
|
<a href="{{stream_url}}">{{stream}}</a>
|
||
|
</td>
|
||
|
<td class="recent_topic_name">
|
||
|
<a href="{{topic_url}}">{{topic}}</a>
|
||
|
</td>
|
||
|
<td class="recent_topic_actions">
|
||
|
<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>
|
||
|
</td>
|
||
|
<td class='recent_topic_users'>
|
||
|
</td>
|
||
|
<td class="recent_topic_timestamp">
|
||
|
{{ last_msg_time }}
|
||
|
</td>
|
||
|
</tr>
|