mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-07-30 04:23:11 +03:00
Cleaned up some user/image areas of the app
Further cleanup of docblocks and standardisation of repos.
This commit is contained in:
@ -13,8 +13,8 @@
|
||||
<ul class="sortable-page-list sort-list">
|
||||
|
||||
@foreach($bookChildren as $bookChild)
|
||||
<li class="text-{{ $bookChild->getClassName() }}"
|
||||
data-id="{{$bookChild->id}}" data-type="{{ $bookChild->getClassName() }}"
|
||||
<li class="text-{{ $bookChild->getType() }}"
|
||||
data-id="{{$bookChild->id}}" data-type="{{ $bookChild->getType() }}"
|
||||
data-name="{{ $bookChild->name }}" data-created="{{ $bookChild->created_at->timestamp }}"
|
||||
data-updated="{{ $bookChild->updated_at->timestamp }}">
|
||||
<div class="entity-list-item">
|
||||
|
@ -12,7 +12,7 @@
|
||||
@endif
|
||||
|
||||
@foreach($sidebarTree as $bookChild)
|
||||
<li class="list-item-{{ $bookChild->getClassName() }} {{ $bookChild->getClassName() }} {{ $bookChild->isA('page') && $bookChild->draft ? 'draft' : '' }}">
|
||||
<li class="list-item-{{ $bookChild->getType() }} {{ $bookChild->getType() }} {{ $bookChild->isA('page') && $bookChild->draft ? 'draft' : '' }}">
|
||||
@include('partials.entity-list-item-basic', ['entity' => $bookChild, 'classes' => $current->matches($bookChild)? 'selected' : ''])
|
||||
|
||||
@if($bookChild->isA('chapter') && count($bookChild->pages) > 0)
|
||||
|
Reference in New Issue
Block a user