mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
Update print.blade.php
This commit is contained in:
parent
9b3a8c046c
commit
0cdc7af611
|
@ -2,7 +2,7 @@
|
|||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<title>Assigned to {{ $show_location->present()->fullName() }} Location</title>
|
||||
<title>Assigned to {{ $location->present()->fullName() }} Location</title>
|
||||
<style>
|
||||
body {
|
||||
font-family: "Arial, Helvetica", sans-serif;
|
||||
|
@ -50,9 +50,14 @@
|
|||
@endif
|
||||
|
||||
<h2>Asset Management System</h2>
|
||||
|
||||
<b>Assigned To:</b> {{ $show_location->present()->fullName() }} <br>
|
||||
<b>Assigned To:</b> {{ $location->present()->fullName() }}
|
||||
@if ($parent)
|
||||
{{ $parent->present()->fullName() }}
|
||||
@endif
|
||||
<br>
|
||||
@if ($manager)
|
||||
<b>Manager:</b> {{ $manager->present()->fullName() }}<br>
|
||||
@endif
|
||||
<b>Current Date:</b> {{ date("d/m/Y h:i:s A") }}<br><br>
|
||||
|
||||
@if ($users->count() > 0)
|
||||
|
@ -99,7 +104,7 @@
|
|||
<table class="inventory">
|
||||
<thead>
|
||||
<tr>
|
||||
<th colspan="9">{{ trans('general.assets') }}</th>
|
||||
<th colspan="10">{{ trans('general.assets') }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<thead>
|
||||
|
@ -107,12 +112,13 @@
|
|||
<th style="width: 20px;"></th>
|
||||
<th style="width: 10%;">Asset Tag</th>
|
||||
<th style="width: 10%;">Name</th>
|
||||
<th style="width: 15%;">Category</th>
|
||||
<th style="width: 10%;">Category</th>
|
||||
<th style="width: 10%;">Manufacturer</th>
|
||||
<th style="width: 15%;">Model</th>
|
||||
<th style="width: 15%;">Serial</th>
|
||||
<th style="width: 10%;">Location</th>
|
||||
<th style="width: 15%;">Checked Out</th>
|
||||
<th style="width: 10%;">Checked Out</th>
|
||||
<th style="width: 10%;">Expected Checkin</th>
|
||||
</tr>
|
||||
</thead>
|
||||
@php
|
||||
|
@ -131,6 +137,7 @@
|
|||
<td>{{ $asset->serial }}</td>
|
||||
<td>{{ $asset->location->name }}</td>
|
||||
<td>{{ $asset->last_checkout }}</td>
|
||||
<td>{{ $asset->expected_checkin }}</td>
|
||||
</tr>
|
||||
@php
|
||||
$counter++
|
||||
|
@ -139,8 +146,6 @@
|
|||
</table>
|
||||
@endif
|
||||
|
||||
|
||||
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
|
|
Loading…
Reference in a new issue