dnet-applications/apps/dnet-orgs-database-application/src/main/resources/static/resources/html/pages/admin/lastImport.html

26 lines
747 B
HTML

<h4>Last import of suggestions</h4>
<button class="btn btn-sm btn-outline-primary mt-3 mb-2" ng-click="refresh()"><i class="fas fa-redo"></i> refresh</button>
<table class="table table-sm table-striped">
<tr>
<th style="width: 20%">Execution ID</th>
<td style="width: 80%">{{lastImport.id}}</td>
</tr>
<tr>
<th>Execution status</th>
<td>{{lastImport.status}}</td>
</tr>
<tr>
<th>Started at</th>
<td>{{lastImport.dateStart | date:"MMM dd, yyyy 'at' HH:mm"}}</td>
</tr>
<tr>
<th>Finished at</th>
<td>{{lastImport.dateEnd | date:"MMM dd, yyyy 'at' HH:mm"}}</td>
</tr>
<tr>
<th>Message</th>
<td><pre style="width: 800px; overflow-x: scroll;" ng-show="lastImport.message">{{lastImport.message}}</pre></td>
</tr>
</table>