Component lists are tidied up a bit
This commit is contained in:
@@ -2,13 +2,24 @@
|
||||
<ul class='list-group components'>
|
||||
@foreach($components as $component)
|
||||
<li class='list-group-item component'>
|
||||
@if($component->link)
|
||||
<h3 class='pull-right'><a href='{{ $component->link }}' target='_blank'><i class='ion ion-link'></i></a></h3>
|
||||
@endif
|
||||
<h4>{{ $component->name }} <small class='text-component-{{ $component->status }}'>{{ $component->humanStatus }}</small></h4>
|
||||
@if($component->description)
|
||||
<p>{{ $component->description }}</p>
|
||||
@endif
|
||||
<div class='row'>
|
||||
<div class='col-xs-10'>
|
||||
<h4>
|
||||
{{ $component->name }}
|
||||
@if($component->description)
|
||||
<i class='ion ion-ios-help-outline' data-toggle='tooltip' data-title="{{ $component->description }}"></i>
|
||||
@endif
|
||||
<small class='text-component-{{ $component->status }}'>{{ $component->humanStatus }}</small>
|
||||
</h4>
|
||||
</div>
|
||||
<div class='col-xs-2 text-right'>
|
||||
<h4>
|
||||
@if($component->link)
|
||||
<a href='{{ $component->link }}' target='_blank'><i class='ion ion-link'></i></a>
|
||||
@endif
|
||||
</h4>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
|
||||
Reference in New Issue
Block a user