aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/index.html
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2022-03-04 15:46:45 +0500
committerEgor Tensin <Egor.Tensin@gmail.com>2022-03-04 15:46:45 +0500
commit24bdd4fd13c53021880b54d7fe185be2e94ebeca (patch)
tree6fe8f8e1228a4cc6c00ff62c07a08dc1a6ec3de5 /index.html
parentforgot to set inputs to default values (diff)
downloadwireguard-config-24bdd4fd13c53021880b54d7fe185be2e94ebeca.tar.gz
wireguard-config-24bdd4fd13c53021880b54d7fe185be2e94ebeca.zip
index.html: prettier Liquid
Diffstat (limited to 'index.html')
-rw-r--r--index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.html b/index.html
index 87839a5..8cd136a 100644
--- a/index.html
+++ b/index.html
@@ -110,7 +110,7 @@ show the configuration that can be easily consumed by the new client.</p>
</div>
</div>
{% for param in grp.items %}
- <div class="form-group" id="param_{{ param.id }}_container" {% if param.advanced %}style="display: none;"{% endif %}>
+ <div class="form-group" id="param_{{ param.id }}_container"{% if param.advanced %} style="display: none;"{% endif %}>
<label for="param_{{ param.id }}" class="col-sm-3 control-label">{{ param.name }}</label>
<div class="col-sm-9">
<input type="text" class="form-control" id="param_{{ param.id }}" placeholder="{{ param.placeholder }}" aria-describedby="param_{{ param.id }}_help"{% if param.default != null %} value="{{ param.default }}"{% endif %}>