diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-01-23 09:20:21 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-01-23 09:21:53 +0100 |
commit | 47f59cfe19e7d4cc43b4a19c746504016b0881d8 (patch) | |
tree | c19ad3199769a2daea1861d3e6ae612e40061ca7 /templates/settings_applied.html | |
parent | 8671c1bd2f89dc83c4d495ae0b0e8c814661cc74 (diff) | |
download | cats-radio-node-47f59cfe19e7d4cc43b4a19c746504016b0881d8.tar.gz cats-radio-node-47f59cfe19e7d4cc43b4a19c746504016b0881d8.tar.bz2 cats-radio-node-47f59cfe19e7d4cc43b4a19c746504016b0881d8.zip |
Create settings applied template, replace incoming by chat
Diffstat (limited to 'templates/settings_applied.html')
-rw-r--r-- | templates/settings_applied.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/settings_applied.html b/templates/settings_applied.html new file mode 100644 index 0000000..f536772 --- /dev/null +++ b/templates/settings_applied.html @@ -0,0 +1,13 @@ +{% include "head.html" %} +<div class="content"> + {% if ok %} + <h1>Configuration updated</h1> + <p>If you enabled or disabled tunnel, please restart the cats-radio-node process.</p> + {% 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: #} |