42 lines
1.6 KiB
Handlebars
42 lines
1.6 KiB
Handlebars
{{#main-content}}
|
|
<div class="widget-box transparent">
|
|
{{grid-header search-box=false}}
|
|
<div class="widget-body">
|
|
<!-- #section:custom/scrollbar -->
|
|
<div class="widget-main no-padding table-responsive no-border">
|
|
<table class="table table-striped table-bordered table-hover dataTable" style="border: 1px solid #ddd;">
|
|
<thead class="thin-border-bottom">
|
|
<tr>
|
|
<th>
|
|
<i class="ace-icon fa fa-clock-o bigger-110"></i>
|
|
Backup Date
|
|
</th>
|
|
<th>
|
|
<i class="ace-icon fa fa-cogs bigger-110"></i>
|
|
Settings
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
{{#each model as |it|}}
|
|
<tr>
|
|
<td>
|
|
{{date-cell value=it}}
|
|
</td>
|
|
<td>
|
|
<div class="btn-group">
|
|
<button data-rel="tooltip" class="btn btn-xs btn-info" title="Restore" {{action (route-action 'restore' it)}}>
|
|
<i class="ace-icon fa fa-reply-all bigger-120"></i>
|
|
</button>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{/main-content}}
|