Files
cachet-docker/resources/views/partials/component.blade.php
James Brooks 9f98683aff Fixes #3668
2019-07-11 13:14:16 +01:00

16 lines
754 B
PHP

<li class="list-group-item {{ $component->group_id ? "sub-component" : "component" }}">
@if($component->link)
<a href="{{ $component->link }}" target="_blank" class="links">{!! $component->name !!}</a>
@else
{!! $component->name !!}
@endif
@if($component->description)
<i class="ion ion-ios-help-outline help-icon" data-toggle="tooltip" data-title="{{ $component->description }}" data-container="body"></i>
@endif
<div class="pull-right">
<small class="text-component-{{ $component->status }} {{ $component->status_color }}" data-toggle="tooltip" title="{{ trans('cachet.components.last_updated', ['timestamp' => $component->updated_at_formatted]) }}">{{ $component->human_status }}</small>
</div>
</li>