0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-05-11 19:35:37 +00:00
BookStackApp_BookStack/resources/views/exports/parts/import.blade.php

10 lines
608 B
PHP
Raw Normal View History

<div class="item-list-row flex-container-row items-center justify-space-between wrap">
<div class="px-m py-s">
<a href="{{ $import->getUrl() }}"
class="text-{{ $import->type }}">@icon($import->type) {{ $import->name }}</a>
</div>
<div class="px-m py-s flex-container-row gap-m items-center">
<div class="bold opacity-80 text-muted">{{ $import->getSizeString() }}</div>
<div class="bold opacity-80 text-muted min-width-xs text-right" title="{{ $import->created_at->toISOString() }}">@icon('time'){{ $import->created_at->diffForHumans() }}</div>
</div>
</div>