8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-07-04 05:04:06 +00:00

Fix : Ne pas casser le formulaire si des champs ne sont pas spécifiés

Vérifie la présence des champs de customistion du tag et agit en
conséquence.
This commit is contained in:
Maël Kervella 2017-10-06 23:19:26 +00:00
parent 966a60905b
commit 176bf257af

View file

@ -45,7 +45,19 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% bootstrap_form machineform %}
{% endif %}
{% if interfaceform %}
{% if i_choices %}
{% if i_match_func %}
{% bootstrap_form_typeahead interfaceform 'ipv4' choices=i_choices match_func=i_match_func %}
{% else %}
{% bootstrap_form_typeahead interfaceform 'ipv4' choices=i_choices %}
{% endif %}
{% else %}
{% if i_match_func %}
{% bootstrap_form_typeahead interfaceform 'ipv4' match_func=i_match_func %}
{% else %}
{% bootstrap_form_typeahead interfaceform 'ipv4' %}
{% endif %}
{% endif %}
{% endif %}
{% if domainform %}
{% bootstrap_form domainform %}