2020-06-24 15:38:08 -04:00
|
|
|
<div component="dropdown" class="dropdown-container" id="export-menu">
|
|
|
|
<div refs="dropdown@toggle" class="icon-list-item"
|
2019-08-24 13:26:28 -04:00
|
|
|
aria-haspopup="true" aria-expanded="false" aria-label="{{ trans('entities.export') }}" tabindex="0">
|
|
|
|
<span>@icon('export')</span>
|
|
|
|
<span>{{ trans('entities.export') }}</span>
|
|
|
|
</div>
|
2020-06-24 15:38:08 -04:00
|
|
|
<ul refs="dropdown@menu" class="wide dropdown-menu" role="menu">
|
2022-04-20 09:03:47 -04:00
|
|
|
<li><a href="{{ $entity->getUrl('/export/html') }}" target="_blank" class="label-item"><span>{{ trans('entities.export_html') }}</span><span>.html</span></a></li>
|
|
|
|
<li><a href="{{ $entity->getUrl('/export/pdf') }}" target="_blank" class="label-item"><span>{{ trans('entities.export_pdf') }}</span><span>.pdf</span></a></li>
|
|
|
|
<li><a href="{{ $entity->getUrl('/export/plaintext') }}" target="_blank" class="label-item"><span>{{ trans('entities.export_text') }}</span><span>.txt</span></a></li>
|
|
|
|
<li><a href="{{ $entity->getUrl('/export/markdown') }}" target="_blank" class="label-item"><span>{{ trans('entities.export_md') }}</span><span>.md</span></a></li>
|
2019-08-24 13:26:28 -04:00
|
|
|
</ul>
|
2021-06-22 14:12:24 -04:00
|
|
|
</div>
|