Cachet/resources/views/partials/component.blade.php
2015-03-20 18:30:45 -06:00

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>