mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-04 23:17:02 +03:00
27 lines
777 B
HTML
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>
|