mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-13 15:01:02 -08:00
Fixes #2254
This commit is contained in:
parent
c1d2be651a
commit
616f922306
|
@ -15,7 +15,7 @@
|
||||||
<strong>{{ $item_name }}</strong>
|
<strong>{{ $item_name }}</strong>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@if isset($item_tag)
|
@if (isset($item_tag))
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
Asset Tag:
|
Asset Tag:
|
||||||
|
@ -25,7 +25,7 @@
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@endif
|
@endif
|
||||||
@if isset($item_serial)
|
@if (isset($item_serial))
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
Serial:
|
Serial:
|
||||||
|
@ -43,7 +43,7 @@
|
||||||
<strong>{{ $checkout_date }}</strong>
|
<strong>{{ $checkout_date }}</strong>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@if isset($expected_checkin)
|
@if (isset($expected_checkin))
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
Expected Checkin Date:
|
Expected Checkin Date:
|
||||||
|
@ -53,7 +53,7 @@
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@endif
|
@endif
|
||||||
@if isset($note)
|
@if (isset($note))
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
Additional Notes:
|
Additional Notes:
|
||||||
|
|
Loading…
Reference in a new issue