mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
34 lines
1.8 KiB
PHP
34 lines
1.8 KiB
PHP
<div class="entity-meta">
|
|
@if($entity->isA('revision'))
|
|
@icon('history'){{ trans('entities.pages_revision') }}
|
|
{{ trans('entities.pages_revisions_number') }}{{ $entity->revision_number == 0 ? '' : $entity->revision_number }}
|
|
<br>
|
|
@endif
|
|
|
|
@if ($entity->isA('page'))
|
|
@if (userCan('page-update', $entity)) <a href="{{ $entity->getUrl('/revisions') }}"> @endif
|
|
@icon('history'){{ trans('entities.meta_revision', ['revisionCount' => $entity->revision_count]) }} <br>
|
|
@if (userCan('page-update', $entity))</a>@endif
|
|
@endif
|
|
|
|
|
|
@if ($entity->createdBy)
|
|
@icon('star'){!! trans('entities.meta_created_name', [
|
|
'timeLength' => '<span title="'.$entity->created_at->toDayDateTimeString().'">'.$entity->created_at->diffForHumans() . '</span>',
|
|
'user' => "<a href='{$entity->createdBy->getProfileUrl()}'>".htmlentities($entity->createdBy->name). "</a>"
|
|
]) !!}
|
|
@else
|
|
@icon('star')<span title="{{$entity->created_at->toDayDateTimeString()}}">{{ trans('entities.meta_created', ['timeLength' => $entity->created_at->diffForHumans()]) }}</span>
|
|
@endif
|
|
|
|
<br>
|
|
|
|
@if ($entity->updatedBy)
|
|
@icon('edit'){!! trans('entities.meta_updated_name', [
|
|
'timeLength' => '<span title="' . $entity->updated_at->toDayDateTimeString() .'">' . $entity->updated_at->diffForHumans() .'</span>',
|
|
'user' => "<a href='{$entity->updatedBy->getProfileUrl()}'>".htmlentities($entity->updatedBy->name). "</a>"
|
|
]) !!}
|
|
@elseif (!$entity->isA('revision'))
|
|
@icon('edit')<span title="{{ $entity->updated_at->toDayDateTimeString() }}">{{ trans('entities.meta_updated', ['timeLength' => $entity->updated_at->diffForHumans()]) }}</span>
|
|
@endif
|
|
</div> |