From a3bdbf23065ec4d2f75318aed6aeefeadd683ecd Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Mon, 6 Feb 2023 16:51:47 +0100 Subject: [PATCH] Rendered html radio element. --- src/lib.rs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 2a9dec4..764c1b1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,6 +8,7 @@ pub enum FType { Text, TextArea, Check, + Radio, Select, } @@ -72,6 +73,21 @@ impl Field { {% if label %}{% endif %} {% if help %}
{{ help }}
{% endif %} "#); + }, + FType::Radio => { + match f.tmpl.add_raw_template("field", r#"{% if label %}
+
{% endif %} + {% for o in options %} +
+ + +
+ {% endfor %} + {% if help %}
{{ help }}
{% endif %} + {% if label %}
{% endif %}"#) { +Err(e) => { println!("{:?}", e) }, +_ => {}, +}; }, FType::Select => { f.tmpl.add_raw_template("field", r#"{% if label %}
-- 2.49.0