]> saetta.ns0.it Git - rust/zakform/commitdiff
Rendered html radio element.
authorAndrea Zagli <azagli@libero.it>
Mon, 6 Feb 2023 15:51:47 +0000 (16:51 +0100)
committerAndrea Zagli <azagli@libero.it>
Mon, 6 Feb 2023 15:51:47 +0000 (16:51 +0100)
src/lib.rs

index 2a9dec420d376d504327df34da4e79b3dc6110cf..764c1b1867cff609df4b395191a74cbc21f4be8b 100644 (file)
@@ -8,6 +8,7 @@ pub enum FType {
        Text,
        TextArea,
        Check,
+       Radio,
        Select,
 }
 
@@ -72,6 +73,21 @@ impl Field {
  {% if label %}<label for="{{ name }}" class="form-check-label">{{ label }}</label>{% endif %}
  {% if help %}<div id="helpBox_{{ name }}_" class="invalid-feedback">{{ help }}</div>{% endif %}
  </div>"#);
+                       },
+                       FType::Radio => {
+                               match f.tmpl.add_raw_template("field", r#"{% if label %}<div class="mb-3">
+ <label for="{{ name }}" class="form-label">{{ label }}</label><br/>{% endif %}
+ {% for o in options %}
+ <div class="form-check{% if help %} is-invalid{% endif %}">
+ <input type="radio" class="form-check-input{% if help %} is-invalid{% endif %}" name="{{ name }}" id="{{ name }}_{{ loop.index }}" value="{{ o.value }}"{% if value == o.value %} checked{% endif %}/>
+ <label class="form-label" for="{{ name }}_{{ loop.index }}">{{ o.label }}</label>
+ </div>
+ {% endfor %}
+ {% if help %}<div id="helpBox_{{ name }}_" class="invalid-feedback">{{ help }}</div>{% endif %}
+ {% if label %}</div>{% endif %}"#) {
+Err(e) => { println!("{:?}", e) },
+_ => {},
+};
                        },
                        FType::Select => {
                                f.tmpl.add_raw_template("field", r#"{% if label %}<div class="mb-3">