2016-07-03 04:58:45 -04:00
|
|
|
<div class="entity-list @if(isset($style)){{ $style }}@endif" ng-non-bindable>
|
|
|
|
@if(count($entities) > 0)
|
|
|
|
@foreach($entities as $index => $entity)
|
|
|
|
@if($entity->isA('page'))
|
2017-07-27 11:10:58 -04:00
|
|
|
@include('pages/list-item', ['page' => $entity, 'showPath' => true])
|
2016-07-03 04:58:45 -04:00
|
|
|
@elseif($entity->isA('book'))
|
|
|
|
@include('books/list-item', ['book' => $entity])
|
|
|
|
@elseif($entity->isA('chapter'))
|
|
|
|
@include('chapters/list-item', ['chapter' => $entity, 'hidePages' => true, 'showPath' => true])
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@if($index !== count($entities) - 1)
|
|
|
|
<hr>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@endforeach
|
|
|
|
@else
|
|
|
|
<p class="text-muted">
|
2016-12-04 09:08:04 -05:00
|
|
|
{{ trans('common.no_items') }}
|
2016-07-03 04:58:45 -04:00
|
|
|
</p>
|
|
|
|
@endif
|
|
|
|
</div>
|