Revision 30e4d5bf
Von Sven Schöling vor mehr als 13 Jahren hinzugefügt
templates/webpages/amcvar/render_inputs_block.html | ||
---|---|---|
[%- USE L %]
|
||
[%- BLOCK cvar_name %][% HTML.escape(cvar.name_prefix) _ "cvar_" _ HTML.escape(cvar.var.name) _ HTML.escape(cvar.name_postfix) -%][% END %]
|
||
[%- BLOCK cvar_inputs %]
|
||
[% render_input_blocks__cvar_name = PROCESS cvar_name %]
|
||
[%- %]
|
||
[%- IF cvar.hide_non_editable && !cvar.var.flag_editable %]
|
||
<input type="hidden" name="[% PROCESS cvar_name %]" value="[% HTML.escape(cvar.var.value) %]">
|
||
... | ... | |
[%- ELSIF cvar.var.type == 'textfield' %]
|
||
<textarea name="[% PROCESS cvar_name %]" cols="[% HTML.escape(cvar.var.width) %]" rows="[% HTML.escape(cvar.var.height) %]">[% HTML.escape(cvar.value) %]</textarea>
|
||
[%- ELSIF cvar.var.type == 'date' %]
|
||
<input name="[% PROCESS cvar_name %]" id="[% PROCESS cvar_name %]" size="12" value="[% HTML.escape(cvar.value) %]">
|
||
<input name="[% PROCESS cvar_name %]_button" id="[% PROCESS cvar_name %]_trigger" type="button" value="?">
|
||
<script type="text/javascript">
|
||
<!--
|
||
Calendar.setup({ inputField : "[% PROCESS cvar_name %]",
|
||
ifFormat : "[% myconfig_jsc_dateformat %]",
|
||
align : "BR",
|
||
button : "[% PROCESS cvar_name %]_trigger" });
|
||
-->
|
||
</script>
|
||
[%- L.date_tag(render_input_blocks__cvar_name, cvar.value) %]
|
||
|
||
[%- ELSIF cvar.var.type == 'timestamp' %]
|
||
<input name="[% PROCESS cvar_name %]" value="[% HTML.escape(cvar.value) %]">
|
||
[%- ELSIF cvar.var.type == 'select' %]
|
Auch abrufbar als: Unified diff
date_tag auch in block inputs verwenden