Files
librenms-librenms/resources/views/widgets/top-interfaces.blade.php

22 lines
973 B
PHP
Raw Normal View History

<h4>Top {{ $interface_count }} interfaces polled within {{ $time_interval }} minutes</h4>
<div class="table-responsive">
<table class="table table-hover table-condensed table-striped bootgrid-table">
<thead>
<tr>
<th class="text-left">@lang('Device')</th>
<th class="text-left">@lang('Interface')</th>
<th class="text-left">@lang('Total traffic')</th>
</tr>
</thead>
<tbody>
@foreach($ports as $port)
<tr>
<td class="text-left">{!! \LibreNMS\Util\Url::deviceLink($port->device, $port->device->shortDisplayName()) !!}</td>
<td class="text-left">{!! \LibreNMS\Util\Url::portLink($port, $port->getShortLabel()) !!}</td>
<td class="text-left">{!! \LibreNMS\Util\Url::portLink($port, \LibreNMS\Util\Url::portThumbnail($port)) !!}</td>
</tr>
@endforeach
</tbody>
</table>
</div>