zulip/static/templates/settings/admin_playground_list.hbs

21 lines
576 B
Handlebars

{{#with playground}}
<tr>
<td>
<span>{{pygments_language}}</span>
</td>
<td>
<span>{{playground_name}}</span>
</td>
<td>
<span>{{url_prefix}}</span>
</td>
{{#if ../can_modify}}
<td class="no-select actions">
<button class="button small delete btn-danger tippy-zulip-tooltip" data-playground-id="{{id}}" data-tippy-content="{{t 'Delete' }} {{ playground_name }}" aria-label="{{t 'Delete' }} {{ playground_name }}">
<i class="fa fa-trash-o"></i>
</button>
</td>
{{/if}}
</tr>
{{/with}}