None => { },
};
+ for option in e.options {
+ println!(r#"fi.add_option(zakform::fields::FOption{{ value: String::from("{}"), label: String::from("{}") }});"#, option.id, option.text);
+ }
+
+ match e.zakcgi_options {
+ Some(zako) => {
+ for option in zako.options {
+ println!(r#"fi.add_option(zakform::fields::FOption{{ value: String::from("{}"), label: String::from("{}") }});"#, option.value, option.content);
+ }
+ },
+ None => { },
+ }
+
for filter in e.filters {
match filter.ftype.as_str() {
"zak_form_element_filter_trim" => { println!("fi.add_filter(zakform::filters::filter_trim);"); },