mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 01:16:27 +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:
parent
966a60905b
commit
176bf257af
1 changed files with 12 additions and 0 deletions
|
@ -45,8 +45,20 @@ 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 %}
|
||||
{% endif %}
|
||||
|
|
Loading…
Reference in a new issue