mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-24 21:24:13 -08:00
Move audited count to top of table
This commit is contained in:
parent
761371509d
commit
10f322198f
|
@ -94,7 +94,7 @@
|
|||
<div class="col-md-6">
|
||||
<div class="box box-default" id="audited-div" style="display: none">
|
||||
<div class="box-header with-border">
|
||||
<h3 class="box-title"> {{ trans('general.bulkaudit_status') }} </h3>
|
||||
<h3 class="box-title"> {{ trans('general.bulkaudit_status') }} (<span id="audit-counter">0</span> assets audited) </h3>
|
||||
</div>
|
||||
<div class="box-body">
|
||||
|
||||
|
@ -106,11 +106,6 @@
|
|||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="3"><span id="audit-counter">0</span> assets audited</td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
<tbody>
|
||||
<tr id="audit-loader" style="display: none;">
|
||||
<td colspan="3">
|
||||
|
@ -136,7 +131,6 @@
|
|||
$('#audited-div').show();
|
||||
$('#audit-loader').show();
|
||||
|
||||
|
||||
event.preventDefault();
|
||||
|
||||
var form = $("#audit-form").get(0);
|
||||
|
|
Loading…
Reference in a new issue