mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-02 08:21:09 -08:00
Use <th> for table header in bulk interstitial
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
d274fb6963
commit
7e3a062984
|
@ -28,11 +28,11 @@
|
||||||
<table class="table table-striped table-condensed">
|
<table class="table table-striped table-condensed">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<td></td>
|
<th></th>
|
||||||
<td>{{ trans('admin/hardware/table.id') }}</td>
|
<th>{{ trans('admin/hardware/table.id') }}</th>
|
||||||
<td>{{ trans('general.asset_name') }}</td>
|
<th>{{ trans('general.asset_name') }}</th>
|
||||||
<td>{{ trans('admin/hardware/table.location')}}</td>
|
<th>{{ trans('admin/hardware/table.location')}}</th>
|
||||||
<td>{{ trans('admin/hardware/table.assigned_to') }}</td>
|
<th>{{ trans('admin/hardware/table.assigned_to') }}</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
@ -47,8 +47,12 @@
|
||||||
@endif
|
@endif
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
|
|
||||||
|
{{ $asset->assigned_to }}
|
||||||
@if ($asset->assignedTo)
|
@if ($asset->assignedTo)
|
||||||
{{ $asset->assignedTo->present()->name()}}
|
{{ $asset->assignedTo->present()->name()}}
|
||||||
|
@else
|
||||||
|
kflgjg
|
||||||
@endif
|
@endif
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
Loading…
Reference in a new issue