Files
librenms-librenms/resources/views/widgets/component-status.blade.php
Peca Nesovanovic 8b012c0a27 Enable translation on Eventlog & Component-status widgets (#14180)
* translate component-status

* translate eventlog
2022-08-05 10:12:44 +02:00

19 lines
626 B
PHP

<div>
<table id="component-status" class="table table-hover table-condensed table-striped">
<thead>
<tr>
<th data-column-id="status" data-order="desc">{{ __('Status') }}</th>
<th data-column-id="count">{{ __('Count') }}</th>
</tr>
</thead>
<tbody>
@foreach($status as $item)
<tr>
<td><p class="text-left {{ $item['color'] }}">{{ $item['text'] }}</p></td>
<td><p class="text-left {{ $item['color'] }}">{{ $item['total'] }}</p></td>
</tr>
@endforeach
</tbody>
</table>
</div>