mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-24 19:53:00 +01:00
16 lines
551 B
PHP
16 lines
551 B
PHP
<li class="list-group-item {{ $component->group_id ? "sub-component" : "component" }}">
|
|
@if($component->link)
|
|
<a href="{{ $component->link }}" target="_blank">{{ $component->name }}</a>
|
|
@else
|
|
{{ $component->name }}
|
|
@endif
|
|
|
|
@if($component->description)
|
|
<i class="ion-ios-help-outline help-icon" data-toggle="tooltip" data-title="{{ $component->description }}"></i>
|
|
@endif
|
|
|
|
<div class="pull-right">
|
|
<small class="text-component-{{ $component->status }}">{{ $component->humanStatus }}</small>
|
|
</div>
|
|
</li>
|