mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-14 06:23:02 +01:00
28 lines
1.1 KiB
Smarty
28 lines
1.1 KiB
Smarty
|
{if $freeze}
|
||
|
{if $value}
|
||
|
{if $values_and_units[$value].unknown}
|
||
|
<span class='LSformElement_valueWithUnit_unknown'>{$values_and_units[$value].unknown}</span>
|
||
|
{else}
|
||
|
{if $values_and_units[$value].valueWithUnit}
|
||
|
{$values_and_units[$value].valueWithUnit}{$values_and_units[$value].unitLabel}
|
||
|
{else}
|
||
|
{$values_and_units[$value].value}
|
||
|
{/if}
|
||
|
{/if}
|
||
|
{else}
|
||
|
{$noValueTxt}
|
||
|
{/if}
|
||
|
{else}
|
||
|
{if $values_and_units[$value].valueWithUnit}
|
||
|
<input name='{$attr_name}_valueWithUnit[]' type=text class='LSformElement_valueWithUnit' value="{$values_and_units[$value].valueWithUnit}"/>
|
||
|
<select name='{$attr_name}_unitFact[]' class='LSform LSformElement_valueWithUnit'>
|
||
|
{html_options options=$units selected=$values_and_units[$value].unitSill}
|
||
|
</select>
|
||
|
{else}
|
||
|
<input name='{$attr_name}_value[]' type=text class='LSformElement_valueWithUnit' value="{$values_and_units[$value].value}"/>
|
||
|
{/if}
|
||
|
{if $values_and_units[$value].unknown}
|
||
|
<span class='LSformElement_valueWithUnit_unknown'>{$values_and_units[$value].unknown}</span>
|
||
|
{/if}
|
||
|
{/if}
|