mirror of
https://github.com/zulip/zulip.git
synced 2026-07-03 21:10:12 +08:00
This commit is a part of the efforts to rename btn-related classes and variables to align with Zulip's no-abbreviations policy and streamline the search results.
32 lines
968 B
Handlebars
32 lines
968 B
Handlebars
{{#with realm_export}}
|
|
<tr class="export_row" id="export_{{id}}">
|
|
<td>
|
|
<span class="acting_user">{{acting_user}}</span>
|
|
</td>
|
|
<td>
|
|
<span>{{export_type}}</span>
|
|
</td>
|
|
<td>
|
|
<span class="export_time">{{event_time}}</span>
|
|
</td>
|
|
<td>
|
|
{{#if url}}
|
|
<span class="export_url"><a href="{{url}}" download>{{t 'Complete' }}</a></span>
|
|
{{else if time_failed}}
|
|
<span class="export_status">{{t 'Failed' }}: {{time_failed}}</span>
|
|
{{else if pending}}
|
|
<div class="export_url_spinner"></div>
|
|
{{else if time_deleted}}
|
|
<span class="export_status">{{t 'Deleted' }}: {{time_deleted}}</span>
|
|
{{/if}}
|
|
</td>
|
|
<td class="actions">
|
|
{{#if url}}
|
|
<button class="button rounded small delete button-danger" data-export-id="{{id}}">
|
|
<i class="fa fa-trash-o" aria-hidden="true"></i>
|
|
</button>
|
|
{{/if}}
|
|
</td>
|
|
</tr>
|
|
{{/with}}
|