zulip/static/templates/muted_user_ui_row.hbs
Abhijeet Prasad Bodas bbbaa109ec settings: Add UI page for managing muted users.
This page is temporarily hidden except in the development environment,
because the "muted users" feature is incomplete.
2021-04-21 10:17:44 -07:00

10 lines
305 B
Handlebars

{{#with muted_users}}
<tr data-user-id="{{user_id}}" data-user-name="{{user_name}}" data-date-muted="{{date_muted_str}}">
<td>{{user_name}}</td>
<td>{{date_muted_str}}</td>
<td class="actions">
<span><a class="settings-unmute-user">{{t "Unmute" }}</a></span>
</td>
</tr>
{{/with}}