2015-11-21 12:22:14 -05:00
|
|
|
|
2016-02-20 13:51:01 -05:00
|
|
|
<div class="entity-list @if(isset($style)){{ $style }}@endif" ng-non-bindable>
|
2016-02-20 07:37:06 -05:00
|
|
|
@if(count($entities) > 0)
|
|
|
|
@foreach($entities as $index => $entity)
|
|
|
|
@if($entity->isA('page'))
|
|
|
|
@include('pages/list-item', ['page' => $entity])
|
|
|
|
@elseif($entity->isA('book'))
|
|
|
|
@include('books/list-item', ['book' => $entity])
|
|
|
|
@elseif($entity->isA('chapter'))
|
|
|
|
@include('chapters/list-item', ['chapter' => $entity, 'hidePages' => true])
|
|
|
|
@endif
|
2015-12-02 15:22:41 -05:00
|
|
|
|
2016-02-20 07:37:06 -05:00
|
|
|
@if($index !== count($entities) - 1)
|
|
|
|
<hr>
|
|
|
|
@endif
|
2015-12-02 15:22:41 -05:00
|
|
|
|
2016-02-20 07:37:06 -05:00
|
|
|
@endforeach
|
|
|
|
@else
|
2016-07-03 05:12:12 -04:00
|
|
|
<p class="text-muted empty-text">
|
2016-12-04 09:08:04 -05:00
|
|
|
{{ $emptyText or trans('common.no_items') }}
|
2016-02-20 07:37:06 -05:00
|
|
|
</p>
|
|
|
|
@endif
|
|
|
|
</div>
|