mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-23 23:49:37 +00:00
2fbed3919b
So that multiple elements on the page can share the same popup, with different search options.
14 lines
755 B
PHP
14 lines
755 B
PHP
<div id="entity-selector-wrap">
|
|
<div components="popup entity-selector-popup" class="popup-background">
|
|
<div class="popup-body small" tabindex="-1">
|
|
<div class="popup-header primary-background">
|
|
<div class="popup-title">{{ trans('entities.entity_select') }}</div>
|
|
<button refs="popup@hide" type="button" class="popup-header-close">@icon('close')</button>
|
|
</div>
|
|
@include('entities.selector', ['name' => 'entity-selector', 'selectorEndpoint' => ''])
|
|
<div class="popup-footer">
|
|
<button refs="entity-selector-popup@select" type="button" disabled class="button">{{ trans('common.select') }}</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |