mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-08-09 10:22:51 +03:00
Added view count tracking with personalised lists
This commit is contained in:
17
resources/views/partials/entity-list.blade.php
Normal file
17
resources/views/partials/entity-list.blade.php
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
@if(count($entities) > 0)
|
||||
@foreach($entities as $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
|
||||
<hr>
|
||||
@endforeach
|
||||
@else
|
||||
<p class="text-muted">
|
||||
No items available :(
|
||||
</p>
|
||||
@endif
|
Reference in New Issue
Block a user