mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-08-07 23:03:00 +03:00
Made list default messages a little nicer
This commit is contained in:
@@ -34,18 +34,30 @@
|
||||
@else
|
||||
<h3>Recent Books</h3>
|
||||
@endif
|
||||
@include('partials/entity-list', ['entities' => $recents, 'style' => 'compact'])
|
||||
@include('partials/entity-list', [
|
||||
'entities' => $recents,
|
||||
'style' => 'compact',
|
||||
'emptyText' => $signedIn ? 'You have not viewed any pages' : 'No books have been created'
|
||||
])
|
||||
</div>
|
||||
|
||||
<div class="col-sm-4">
|
||||
<h3><a class="no-color" href="/pages/recently-created">Recently Created Pages</a></h3>
|
||||
<div id="recently-created-pages">
|
||||
@include('partials/entity-list', ['entities' => $recentlyCreatedPages, 'style' => 'compact'])
|
||||
@include('partials/entity-list', [
|
||||
'entities' => $recentlyCreatedPages,
|
||||
'style' => 'compact',
|
||||
'emptyText' => 'No pages have been recently created'
|
||||
])
|
||||
</div>
|
||||
|
||||
<h3><a class="no-color" href="/pages/recently-updated">Recently Updated Pages</a></h3>
|
||||
<div id="recently-updated-pages">
|
||||
@include('partials/entity-list', ['entities' => $recentlyUpdatedPages, 'style' => 'compact'])
|
||||
@include('partials/entity-list', [
|
||||
'entities' => $recentlyUpdatedPages,
|
||||
'style' => 'compact',
|
||||
'emptyText' => 'No pages have been recently updated'
|
||||
])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@@ -1,6 +1,4 @@
|
||||
|
||||
{{--Requires an entity to be passed with the name $entity--}}
|
||||
|
||||
@if(count($activity) > 0)
|
||||
<div class="activity-list">
|
||||
@foreach($activity as $activityItem)
|
||||
@@ -10,5 +8,5 @@
|
||||
@endforeach
|
||||
</div>
|
||||
@else
|
||||
<p class="text-muted">New activity will show up here.</p>
|
||||
<p class="text-muted">No activity to show</p>
|
||||
@endif
|
@@ -16,8 +16,8 @@
|
||||
|
||||
@endforeach
|
||||
@else
|
||||
<p class="text-muted">
|
||||
No items available
|
||||
<p class="text-muted empty-text">
|
||||
{{ $emptyText or 'No items available' }}
|
||||
</p>
|
||||
@endif
|
||||
</div>
|
Reference in New Issue
Block a user