From 8f799088fb67a14dfc1cf398d95cedceaecbd3fe Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Mon, 6 Feb 2023 16:06:54 +0100 Subject: [PATCH] Rendered html check element. --- src/lib.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 05474f4..2a9dec4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -7,6 +7,7 @@ pub mod filters; pub enum FType { Text, TextArea, + Check, Select, } @@ -64,6 +65,13 @@ impl Field { {% if help %}
{{ help }}
{% endif %} {% if label %}{% endif %}"#); + }, + FType::Check => { + f.tmpl.add_raw_template("field", r#"
+ + {% if label %}{% endif %} + {% if help %}
{{ help }}
{% endif %} +
"#); }, FType::Select => { f.tmpl.add_raw_template("field", r#"{% if label %}
-- 2.49.0