mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-02-03 04:28:43 +00:00
b7476a9e7f
Added file creation reverting and DB rollback on error. Added error display on failed import. Extracted likely shown import form/error text to translation files.
10 lines
No EOL
608 B
PHP
10 lines
No EOL
608 B
PHP
<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> |