mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
a61c9c5e98
- Primarily moved and re-organised view files. - Included readme within views to document the convention. - Fixed some issues with page field select list in previous commit. - Tweaked some route names while going through. - Split some views out further. Closes #2805
25 lines
956 B
PHP
25 lines
956 B
PHP
<div template-manager>
|
|
@if(userCan('templates-manage'))
|
|
<p class="text-muted small mb-none">
|
|
{{ trans('entities.templates_explain_set_as_template') }}
|
|
</p>
|
|
@include('form.toggle-switch', [
|
|
'name' => 'template',
|
|
'value' => old('template', $page->template ? 'true' : 'false') === 'true',
|
|
'label' => trans('entities.templates_set_as_template')
|
|
])
|
|
<hr>
|
|
@endif
|
|
|
|
@if(count($templates) > 0)
|
|
<div class="search-box flexible mb-m">
|
|
<input type="text" name="template-search" placeholder="{{ trans('common.search') }}">
|
|
<button type="button">@icon('search')</button>
|
|
<button class="search-box-cancel text-neg hidden" type="button">@icon('close')</button>
|
|
</div>
|
|
@endif
|
|
|
|
<div template-manager-list>
|
|
@include('pages.parts.template-manager-list', ['templates' => $templates])
|
|
</div>
|
|
</div> |