mirror of https://github.com/zulip/zulip.git
38 lines
2.0 KiB
Handlebars
38 lines
2.0 KiB
Handlebars
<div id="recent_view_filter_buttons" class="btn-group" role="group">
|
|
<div id="recent_filters_group">
|
|
{{> recent_view_filters}}
|
|
</div>
|
|
<div class="search_group" role="group">
|
|
<input type="text" id="recent_view_search" class="filter_text_input" value="{{ search_val }}" autocomplete="off" placeholder="{{t 'Filter topics (t)' }}" />
|
|
<button type="button" class="btn clear_search_button" id="recent_view_search_clear">
|
|
<i class="fa fa-remove" aria-hidden="true"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="table_fix_head" data-simplebar>
|
|
<div class="recent-view-container">
|
|
<table class="table table-responsive">
|
|
<tbody data-empty="{{t 'No conversations match your filters.' }}" class="required-text"></tbody>
|
|
<thead>
|
|
<tr>
|
|
<th data-sort="stream_sort">{{t 'Channel' }}</th>
|
|
<th data-sort="topic_sort">{{t 'Topic' }}</th>
|
|
<th data-sort="unread_sort" data-tippy-content="{{t 'Sort by unread message count' }}" class="unread_sort tippy-zulip-delayed-tooltip hidden-for-spectators">
|
|
<i class="zulip-icon zulip-icon-unread"></i>
|
|
</th>
|
|
<th class='participants_header'>{{t 'Participants' }}</th>
|
|
<th data-sort="numeric" data-sort-prop="last_msg_id" class="last_msg_time_header active descend">{{t 'Time' }}</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
{{!-- Don't show the banner until we have some messages loaded. --}}
|
|
<div class="recent-view-load-more-container main-view-banner info notvisible">
|
|
<div class="last-fetched-message banner_content">{{t "This view is still loading messages."}}</div>
|
|
<button class="fetch-messages-button main-view-banner-action-button right_edge notvisible">
|
|
<div class="loading-indicator"></div>
|
|
<span class="button-label">{{t "Load more"}}</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|