#[derive(Default)]
pub struct FieldCheck {
field: Field,
+ text: String,
}
impl TField for FieldCheck {
context.insert("help", &self.field.help);
context.insert("class", &self.field.class);
context.insert("value", &self.field.value);
+ context.insert("text", &self.text);
s.push_str(self.field.tmpl.render("field", &context).unwrap().as_str());
s
f.field.to_save = true;
f.field.to_render = true;
- match f.field.tmpl.add_raw_template("field", r#"<div class="form-check">
+ 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 %}/>
- {% if label %}<label for="{{ name }}" class="form-check-label">{{ label }}</label>{% 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>"#) {
+ </div>
+ {% if label %}</div>{% endif %}"#) {
Err(e) => { println!("{:?}", e) },
_ => {},
};
f
}
+
+ pub fn get_text(&self) -> String {
+ String::from(&self.text)
+ }
+
+ pub fn set_text(&mut self, text: &str) {
+ self.text = String::from(text);
+ }
}
#[derive(Default)]