]> saetta.ns0.it Git - rust/zakform/commitdiff
Radio single must be 1-based indexed.
authorAndrea Zagli <azagli@libero.it>
Sat, 20 Jan 2024 09:29:22 +0000 (10:29 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 20 Jan 2024 09:29:22 +0000 (10:29 +0100)
src/fields.rs

index f29cd7481bf7d573211a3b4531b96dd722794ac2..b83378994611ece8e643eecd877ff249b6092e0c 100644 (file)
@@ -645,8 +645,8 @@ _ => {},
 };
 
                match f.field.tmpl.add_raw_template("field_single", r#"<div class="form-check{% if help %} is-invalid{% endif %}">
- <input type="radio" class="form-check-input{% if inline %} form-check-inline{% endif %}{% if help %} is-invalid{% endif %}{% if class %} {{ class }}{% endif %}" name="{{ name }}" id="{{ name }}_{{ idx }}" value="{{ value }}"{% if checked != "" %} checked{% endif %}/>
- <label class="form-label" for="{{ name }}_{{ idx }}">{{ label }}</label>
+ <input type="radio" class="form-check-input{% if inline %} form-check-inline{% endif %}{% if help %} is-invalid{% endif %}{% if class %} {{ class }}{% endif %}" name="{{ name }}" id="{{ name }}_{{ idx + 1 }}" value="{{ value }}"{% if checked != "" %} checked{% endif %}/>
+ <label class="form-label" for="{{ name }}_{{ idx + 1 }}">{{ label }}</label>
  </div>"#) {
 Err(e) => { println!("{:?}", e) },
 _ => {},