zulip/static/templates/recent_topics_table.hbs

24 lines
1.0 KiB
Handlebars

<div id="recent_topics_filter_buttons" class="btn-group" role="group">
<div id="recent_filters_group">
{{> recent_topics_filters}}
</div>
<input type="text" id="recent_topics_search" value="{{ search_val }}" placeholder="{{t 'Search stream / topic' }}">
<button type="button" class="btn clear_search_button" id="recent_topics_search_clear">
<i class="fa fa-remove" aria-hidden="true"></i>
</button>
</div>
<div class="table_fix_head">
<table class="table table-responsive table-hover">
<thead>
<tr>
<th data-sort="stream_sort">{{t 'Stream' }}</th>
<th data-sort="topic_sort">{{t 'Topic' }}</th>
<th>{{t 'Actions' }}</th>
<th>{{t 'Participants' }}</th>
<th data-sort="numeric" data-sort-prop="last_msg_id" class="active descend">{{t 'Last message' }}</th>
</tr>
</thead>
<tbody class="required-text" data-empty="{{t 'No topics match your current filter.' }}"></tbody>
</table>
</div>