mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-04 23:17:02 +03:00
34 lines
1.4 KiB
HTML
34 lines
1.4 KiB
HTML
<header>
|
||
<a href="#" class="close" data-bind="click: close">×</a>
|
||
<h4>
|
||
<span data-i18n="POPUPS_PLUGIN/TITLE_PLUGIN"></span>
|
||
"<span data-bind="text: name"></span>"
|
||
</h4>
|
||
<span data-bind="visible: hasReadme, text: readme"></span>
|
||
</header>
|
||
<div class="modal-body">
|
||
<form class="form-horizontal plugin-form" action="#/" spellcheck="false" onsubmit="return false;">
|
||
<div class="alert alert-info" data-bind="visible: !hasConfiguration()" data-i18n="POPUPS_PLUGIN/DESC_NOTHING_TO_CONFIGURE"></div>
|
||
<div class="alert" data-bind="visible: '' !== saveError()">
|
||
<a href="#" class="close" data-bind="click: hideError">×</a>
|
||
<span data-bind="text: saveError"></span>
|
||
</div>
|
||
<div data-bind="foreach: config, visible: hasConfiguration">
|
||
<!-- ko if: 7 == type -->
|
||
<details open="">
|
||
<summary class="legend" data-bind="text: label"></summary>
|
||
<div data-bind="foreach: config">
|
||
<div class="control-group" data-bind="template: { name: 'AdminSettingsPluginProperty' }"></div>
|
||
</div>
|
||
</details>
|
||
<!-- /ko -->
|
||
<!-- ko if: 7 != type -->
|
||
<div class="control-group" data-bind="template: { name: 'AdminSettingsPluginProperty' }"></div>
|
||
<!-- /ko -->
|
||
</div>
|
||
</form>
|
||
</div>
|
||
<footer>
|
||
<a class="btn buttonClose" data-bind="click: close" data-icon="✖" data-i18n="GLOBAL/CLOSE"></a>
|
||
<a class="btn" data-bind="command: saveCommand, visible: hasConfiguration" data-icon="✔" data-i18n="GLOBAL/SAVE"></a>
|
||
</footer>
|