mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
d198332d3c
Including testing to check permissions applied to listed references.
13 lines
452 B
PHP
13 lines
452 B
PHP
<main class="card content-wrap">
|
|
<h1 class="list-heading">{{ trans('entities.references') }}</h1>
|
|
<p>{{ trans('entities.references_to_desc') }}</p>
|
|
|
|
@if(count($references) > 0)
|
|
<div class="book-contents">
|
|
@include('entities.list', ['entities' => $references->pluck('from'), 'showPath' => true])
|
|
</div>
|
|
@else
|
|
<p class="text-muted italic">{{ trans('entities.references_none') }}</p>
|
|
@endif
|
|
|
|
</main> |