mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-22 12:55:14 +08:00
parent
f62843c861
commit
f4ea5f1f55
|
@ -23,7 +23,7 @@
|
|||
<hr>
|
||||
|
||||
<div class="text-muted text-small">
|
||||
@include('partials.entity-meta', ['entity' => $page])
|
||||
@include('partials.entity-export-meta', ['entity' => $page])
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
|
33
resources/views/partials/entity-export-meta.blade.php
Normal file
33
resources/views/partials/entity-export-meta.blade.php
Normal file
|
@ -0,0 +1,33 @@
|
|||
<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>'.$entity->created_at->toDayDateTimeString() . '</span>',
|
||||
'user' => "<a href='{$entity->createdBy->getProfileUrl()}'>".htmlentities($entity->createdBy->name). "</a>"
|
||||
]) !!}
|
||||
@else
|
||||
@icon('star')<span>{{ trans('entities.meta_created', ['timeLength' => $entity->created_at->toDayDateTimeString()]) }}</span>
|
||||
@endif
|
||||
|
||||
<br>
|
||||
|
||||
@if ($entity->updatedBy)
|
||||
@icon('edit'){!! trans('entities.meta_updated_name', [
|
||||
'timeLength' => '<span>' . $entity->updated_at->toDayDateTimeString() .'</span>',
|
||||
'user' => "<a href='{$entity->updatedBy->getProfileUrl()}'>".htmlentities($entity->updatedBy->name). "</a>"
|
||||
]) !!}
|
||||
@elseif (!$entity->isA('revision'))
|
||||
@icon('edit')<span>{{ trans('entities.meta_updated', ['timeLength' => $entity->updated_at->toDayDateTimeString()]) }}</span>
|
||||
@endif
|
||||
</div>
|
|
@ -123,4 +123,15 @@ class ExportTest extends TestCase
|
|||
$resp->assertSee($customHeadContent);
|
||||
}
|
||||
|
||||
public function test_page_html_export_use_absolute_dates()
|
||||
{
|
||||
$page = Page::first();
|
||||
|
||||
$resp = $this->asEditor()->get($page->getUrl('/export/html'));
|
||||
$resp->assertSee($page->created_at->toDayDateTimeString());
|
||||
$resp->assertDontSee($page->created_at->diffForHumans());
|
||||
$resp->assertSee($page->updated_at->toDayDateTimeString());
|
||||
$resp->assertDontSee($page->updated_at->diffForHumans());
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user