mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-12 06:17:28 -08:00
Added upload count
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
59f66051f8
commit
0071596274
|
@ -66,6 +66,10 @@
|
|||
<i class="fas fa-tint fa-fw" aria-hidden="true" style="font-size: 17px;"></i>
|
||||
<span class="sr-only">{{ trans('general.consumables') }}</span>
|
||||
</th>
|
||||
<th class="col-md-1 text-right">
|
||||
<i class="fas fa-paperclip fa-fw" aria-hidden="true" style="font-size: 17px;"></i>
|
||||
<span class="sr-only">{{ trans('general.files') }}</span>
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
@ -93,16 +97,19 @@
|
|||
@endforeach
|
||||
</td>
|
||||
<td class="text-right">
|
||||
{{ number_format($user->assets()->count()) }}
|
||||
{{ number_format($user->assets->count()) }}
|
||||
</td>
|
||||
<td class="text-right">
|
||||
{{ number_format($user->accessories()->count()) }}
|
||||
{{ number_format($user->accessories->count()) }}
|
||||
</td>
|
||||
<td class="text-right">
|
||||
{{ number_format($user->licenses()->count()) }}
|
||||
{{ number_format($user->licenses->count()) }}
|
||||
</td>
|
||||
<td class="text-right">
|
||||
{{ number_format($user->consumables()->count()) }}
|
||||
{{ number_format($user->consumables->count()) }}
|
||||
</td>
|
||||
<td class="text-right">
|
||||
{{ number_format($user->uploads->count()) }}
|
||||
</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
|
|
Loading…
Reference in a new issue