Ajout oubli _get_config
This commit is contained in:
parent
af9dbf2b22
commit
f3297943bb
|
@ -8,7 +8,9 @@
|
||||||
{{:assign config_defaut=$config_defaut|json_decode}}
|
{{:assign config_defaut=$config_defaut|json_decode}}
|
||||||
|
|
||||||
{{if $module.config.input_nature != null}}
|
{{if $module.config.input_nature != null}}
|
||||||
{{:assign var=config.input_nature value=$module.config.input_nature}}
|
{{#foreach from=$module.config.input_nature item="elem"}}
|
||||||
|
{{:assign var="config.input_nature.%s"|args:$elem.label value=$elem.type}}
|
||||||
|
{{/foreach}}
|
||||||
{{else}}
|
{{else}}
|
||||||
{{* pas de config enregistrée : utiliser la config par défaut *}}
|
{{* pas de config enregistrée : utiliser la config par défaut *}}
|
||||||
{{#foreach from=$config_defaut.inputs item="elem"}}
|
{{#foreach from=$config_defaut.inputs item="elem"}}
|
||||||
|
@ -19,7 +21,10 @@
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{if $module.config.output_nature != null}}
|
{{if $module.config.output_nature != null}}
|
||||||
{{:assign var=config.output_nature value=$module.config.output_nature}}
|
{{#foreach from=$module.config.output_nature item="elem"}}
|
||||||
|
{{:assign var="config.output_nature.%s"|args:$elem.label value=$elem.type}}
|
||||||
|
{{/foreach}}
|
||||||
|
{{* :assign var=config.output_nature value=$module.config.output_nature *}}
|
||||||
{{else}}
|
{{else}}
|
||||||
{{* pas de config enregistrée : utiliser la config par défaut *}}
|
{{* pas de config enregistrée : utiliser la config par défaut *}}
|
||||||
{{#foreach from=$config_defaut.outputs item="elem"}}
|
{{#foreach from=$config_defaut.outputs item="elem"}}
|
||||||
|
|
Loading…
Reference in New Issue