blob: 214b8fda0db037e0790d64ede1a4ca2ecc809448 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{% include "head.html" %}
<div class="content">
{% if ok %}
<h1>Configuration updated</h1>
{% else %}
<h1>Configuration update failed</h1>
<p>{{ error_message }}:</p>
<p>{{ error_reason }}:</p>
{% endif %}
</div>
{% include "foot.html" %}
{# vi:set et sw=2 ts=2: #}
|