Fixed weird layout on bulk audit [ch17146]

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2021-08-18 01:05:09 -07:00
parent 0aa328f908
commit 923d2a79ae

View file

@ -16,34 +16,7 @@
} }
</style> </style>
<div class="col-md-6">
<div class="box box-default" id="audited-div" style="display: none">
<div class="box-header with-border">
<h2 class="box-title"> {{ trans('general.bulkaudit_status') }} (<span id="audit-counter">0</span> assets audited) </h2>
</div>
<div class="box-body">
<table id="audited" class="table table-striped snipe-table">
<thead>
<tr>
<th>{{ trans('general.asset_tag') }}</th>
<th>{{ trans('general.bulkaudit_status') }}</th>
<th></th>
</tr>
<tr id="audit-loader" style="display: none;">
<td colspan="3">
<i class="fa fa-spinner spin" aria-hidden="true"></i> Processing...
</td>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
<div>
<div class="row"> <div class="row">
{{ Form::open(['method' => 'POST', 'class' => 'form-horizontal', 'role' => 'form', 'id' => 'audit-form' ]) }} {{ Form::open(['method' => 'POST', 'class' => 'form-horizontal', 'role' => 'form', 'id' => 'audit-form' ]) }}
@ -121,26 +94,27 @@
{{Form::close()}} {{Form::close()}}
</div> <!--/.col-md-7--> </div> <!--/.col-md-6-->
<div class="col-md-6"> <div class="col-md-6">
<div class="box box-default" id="audited-div" style="display: none"> <div class="box box-default" id="audited-div" style="display: none">
<div class="box-header with-border"> <div class="box-header with-border">
<h2 class="box-title"> {{ trans('general.bulkaudit_status') }} (<span id="audit-counter">0</span> assets audited) </h2> <h2 class="box-title"> {{ trans('general.bulkaudit_status') }} (<span id="audit-counter">0</span> assets audited) </h2>
</div> </div>
<div class="box-body"> <div class="box-body">
<table id="audited" class="table table-striped snipe-table"> <table id="audited" class="table table-striped snipe-table">
<thead> <thead>
<tr> <tr>
<th>{{ trans('general.asset_tag') }}</th> <th>{{ trans('general.asset_tag') }}</th>
<th>{{ trans('general.bulkaudit_status') }}</th> <th>{{ trans('general.bulkaudit_status') }}</th>
<th></th> <th></th>
</tr> </tr>
<tr id="audit-loader" style="display: none;"> <tr id="audit-loader" style="display: none;">
<td colspan="3"> <td colspan="3">
<i class="fa fa-spinner spin" aria-hidden="true"></i> Processing... <i class="fa fa-spinner spin" aria-hidden="true"></i> Processing...
</td> </td>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
</tbody> </tbody>
@ -148,7 +122,7 @@
</div> </div>
</div> </div>
</div> </div>
</div>
</div> </div>