BookStack/resources/views/pages/template-manager-list.blade.php
2019-08-26 12:47:04 +01:00

24 lines
1.3 KiB
PHP

{{ $templates->links() }}
@foreach($templates as $template)
<div class="card template-item border-card p-m mb-m" tabindex="0"
aria-label="{{ trans('entities.templates_replace_content') }} - {{ $template->name }}"
draggable="true" template-id="{{ $template->id }}">
<div class="template-item-content" title="{{ trans('entities.templates_replace_content') }}">
<div>{{ $template->name }}</div>
<div class="text-muted">{{ trans('entities.meta_updated', ['timeLength' => $template->updated_at->diffForHumans()]) }}</div>
</div>
<div class="template-item-actions">
<button type="button"
title="{{ trans('entities.templates_prepend_content') }}"
aria-label="{{ trans('entities.templates_prepend_content') }} - {{ $template->name }}"
template-action="prepend">@icon('chevron-up')</button>
<button type="button"
title="{{ trans('entities.templates_append_content') }}"
aria-label="{{ trans('entities.templates_append_content') }} -- {{ $template->name }}"
template-action="append">@icon('chevron-down')</button>
</div>
</div>
@endforeach
{{ $templates->links() }}