2019-07-07 08:45:46 -04:00
|
|
|
<div editor-toolbox class="floating-toolbox">
|
|
|
|
|
|
|
|
<div class="tabs primary-background-light">
|
2019-08-26 07:47:04 -04:00
|
|
|
<button type="button" toolbox-toggle aria-expanded="false">@icon('caret-left-circle')</button>
|
|
|
|
<button type="button" toolbox-tab-button="tags" title="{{ trans('entities.page_tags') }}" class="active">@icon('tag')</button>
|
2019-07-07 08:45:46 -04:00
|
|
|
@if(userCan('attachment-create-all'))
|
2019-08-26 07:47:04 -04:00
|
|
|
<button type="button" toolbox-tab-button="files" title="{{ trans('entities.attachments') }}">@icon('attach')</button>
|
2019-07-07 08:45:46 -04:00
|
|
|
@endif
|
2019-08-26 07:47:04 -04:00
|
|
|
<button type="button" toolbox-tab-button="templates" title="{{ trans('entities.templates') }}">@icon('template')</button>
|
2019-07-07 08:45:46 -04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div toolbox-tab-content="tags">
|
|
|
|
<h4>{{ trans('entities.page_tags') }}</h4>
|
|
|
|
<div class="px-l">
|
2021-08-22 08:15:58 -04:00
|
|
|
@include('entities.tag-manager', ['entity' => $page])
|
2019-07-07 08:45:46 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@if(userCan('attachment-create-all'))
|
2020-07-04 11:53:02 -04:00
|
|
|
@include('attachments.manager', ['page' => $page])
|
2019-07-07 08:45:46 -04:00
|
|
|
@endif
|
|
|
|
|
|
|
|
<div toolbox-tab-content="templates">
|
|
|
|
<h4>{{ trans('entities.templates') }}</h4>
|
|
|
|
|
|
|
|
<div class="px-l">
|
2021-08-22 08:15:58 -04:00
|
|
|
@include('pages.parts.template-manager', ['page' => $page, 'templates' => $templates])
|
2019-07-07 08:45:46 -04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|