]> saetta.ns0.it Git - rust/zakform/commitdiff
FieldCheck must be checked also for value TRUE.
authorAndrea Zagli <azagli@libero.it>
Sun, 12 May 2024 08:06:45 +0000 (10:06 +0200)
committerAndrea Zagli <azagli@libero.it>
Sun, 12 May 2024 08:06:45 +0000 (10:06 +0200)
src/fields.rs

index 841f2ad3aa76fa2257a146c9129746a8e552ffc1..4e4373d9475a9834d718fea540a6b6da55108820 100644 (file)
@@ -1069,7 +1069,7 @@ impl FieldCheck {
                match f.field.tmpl.add_raw_template("field", r#"{% if label %}<div class="mb-3">
  <label for="{{ name }}" class="form-label">{{ label }}</label>{% endif %}
  <div class="form-check">
- <input type="checkbox" class="form-check-input{% if help %} is-invalid{% endif %}{% if class %} {{ class }}{% endif %}" name="{{ name }}" id="{{ name }}" {% if value == "1" or value == "on" %}checked{% endif %}/>
+ <input type="checkbox" class="form-check-input{% if help %} is-invalid{% endif %}{% if class %} {{ class }}{% endif %}" name="{{ name }}" id="{{ name }}" {% if value == "TRUE" or value == "1" or value == "on" %}checked{% endif %}/>
  {% if text %}<label for="{{ name }}" class="form-check-label">{{ text }}</label>{% endif %}
  {% if help %}<div id="helpBox_{{ name }}_" class="invalid-feedback">{{ help }}</div>{% endif %}
  </div>