zulip/web/templates/settings/alert_word_settings_item.hbs

16 lines
549 B
Handlebars

{{! Alert word in the settings page that can be removed }}
{{#with alert_word}}
<tr class="alert-word-item" data-word='{{word}}'>
<td>
<div class="alert_word_listing">
<span class="value">{{word}}</span>
</div>
</td>
<td>
<button type="submit" class="button rounded small delete btn-danger remove-alert-word tippy-zulip-delayed-tooltip" data-tippy-content="{{t 'Delete' }}" data-word="{{word}}">
<i class="fa fa-trash-o" aria-hidden="true"></i>
</button>
</td>
</tr>
{{/with}}