mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-13 05:53:03 +01:00
27 lines
1.1 KiB
Smarty
27 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 || !$values_and_units[$value]}
|
|
<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}" autocomplete="off"/>
|
|
{/if}
|
|
{if $values_and_units[$value].unknown}
|
|
<span class='LSformElement_valueWithUnit_unknown'>{$values_and_units[$value].unknown}</span>
|
|
{/if}
|
|
{/if}
|