2004-01-10 12:17:29 +00:00
<!-- BEGIN dropdown -->
2005-04-10 11:21:01 +00:00
< select name = "{dropdown.FIELD_IDENT}" >
2004-01-10 12:17:29 +00:00
<!-- BEGIN options --> < option value = "{dropdown.options.OPTION_ID}" { dropdown . options . SELECTED } > {dropdown.options.VALUE}< / option > <!-- END options -->
< / select >
<!-- END dropdown -->
<!-- BEGIN text -->
2005-04-10 11:21:01 +00:00
< textarea name = "{text.FIELD_IDENT}" rows = "{text.FIELD_ROWS}" cols = "{text.FIELD_COLS}" > {text.FIELD_VALUE}< / textarea >
2004-01-10 12:17:29 +00:00
<!-- END text -->
<!-- BEGIN string -->
2005-04-10 11:21:01 +00:00
< input type = "text" class = "post" name = "{string.FIELD_IDENT}" size = "{string.FIELD_LENGTH}" maxlength = "{string.FIELD_MAXLEN}" value = "{string.FIELD_VALUE}" / >
2004-01-10 12:17:29 +00:00
<!-- END string -->
<!-- BEGIN bool -->
<!-- IF bool.FIELD_LENGTH eq 1 -->
2005-04-10 11:21:01 +00:00
<!-- BEGIN options --> < input type = "radio" name = "{bool.FIELD_IDENT}" value = "{bool.options.OPTION_ID}" { bool . options . CHECKED } / > < span class = "genmed" > {bool.options.VALUE}< / span > <!-- END options -->
2004-01-10 12:17:29 +00:00
<!-- ELSE -->
2005-04-10 11:21:01 +00:00
< input type = "checkbox" name = "{bool.FIELD_IDENT}" < ! -- IF bool . FIELD_VALUE -- > checked="checked"<!-- ENDIF --> />
2004-01-10 12:17:29 +00:00
<!-- ENDIF -->
<!-- END bool -->
<!-- BEGIN int -->
2005-04-10 11:21:01 +00:00
< input type = "text" class = "post" name = "{int.FIELD_IDENT}" size = "{int.FIELD_LENGTH}" value = "{int.FIELD_VALUE}" / >
2004-01-10 12:17:29 +00:00
<!-- END int -->
<!-- BEGIN date -->
2005-04-10 11:21:01 +00:00
< span class = "genmed" > {L_DAY}:< / span > < select name = "{date.FIELD_IDENT}_day" > {date.S_DAY_OPTIONS}< / select >
< span class = "genmed" > {L_MONTH}:< / span > < select name = "{date.FIELD_IDENT}_month" > {date.S_MONTH_OPTIONS}< / select >
< span class = "genmed" > {L_YEAR}:< / span > < select name = "{date.FIELD_IDENT}_year" > {date.S_YEAR_OPTIONS}< / select >
2004-01-10 12:17:29 +00:00
<!-- END date -->