mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-24 11:43:33 +01:00
16 lines
750 B
PHP
16 lines
750 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>
|