snappymail/snappymail/v/0.0.0/app/templates/Views/Admin/AdminSettingsConfig.html
2022-02-15 09:00:51 +01:00

27 lines
777 B
HTML

<div class="legend">application.ini</div>
<form method="POST" data-bind="submit: saveConfig">
<table class="table table-hover table-bordered">
<!-- ko foreach: config -->
<tbody>
<tr><th colspan="3" data-bind="text: name"></th></tr>
<!-- ko foreach: items -->
<tr>
<td data-bind="text: name"></td>
<td>
<!-- ko if: 'checkbox' == type -->
<input type="checkbox" data-bind="attr: {name: key, checked: value}" readonly="">
<!-- /ko -->
<!-- ko if: 'checkbox' != type -->
<input data-bind="attr: {name: key, type: type}, value: value" readonly="">
<!-- /ko -->
<em data-bind="text: comment, visible: comment"></em>
</td>
</tr>
<!-- /ko -->
</tbody>
<!-- /ko -->
</table>
<!--
<button data-i18n="GLOBAL/SAVE"></button>
-->
</form>