Rendered html check element.
authorAndrea Zagli <azagli@libero.it>
Mon, 6 Feb 2023 15:06:54 +0000 (16:06 +0100)
committerAndrea Zagli <azagli@libero.it>
Mon, 6 Feb 2023 15:06:54 +0000 (16:06 +0100)
src/lib.rs

index 05474f47d8e46205d7cbf13bdd71a73ef846471d..2a9dec420d376d504327df34da4e79b3dc6110cf 100644 (file)
@@ -7,6 +7,7 @@ pub mod filters;
 pub enum FType {
        Text,
        TextArea,
+       Check,
        Select,
 }
 
@@ -64,6 +65,13 @@ impl Field {
  <textarea class="form-control{%if help %} is-invalid{% endif %}" name="{{ name }}" id="{{ name }}" rows="{{ rows }}">{{ value }}</textarea>
  {% if help %}<div id="helpBox_{{ name }}_" class="invalid-feedback">{{ help }}</div>{% endif %}
  {% if label %}</div>{% endif %}"#);
+                       },
+                       FType::Check => {
+                               f.tmpl.add_raw_template("field", r#"<div class="form-check">
+ <input type="checkbox" class="form-check-input{% if help %} is-invalid{% endif %}" name="{{ name }}" id="{{ name }}" {% if value == "1" or value == "on" %}checked{% endif %}/>
+ {% 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::Select => {
                                f.tmpl.add_raw_template("field", r#"{% if label %}<div class="mb-3">