mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
parent
3ef71e529a
commit
4c473ecef4
1 changed files with 6 additions and 6 deletions
12
docs/templates/plugin.rst.j2
vendored
12
docs/templates/plugin.rst.j2
vendored
|
@ -196,9 +196,9 @@ Parameters
|
|||
</tr>
|
||||
{% if value.suboptions %}
|
||||
{% if value.suboptions.items %}
|
||||
@{ loop(value.suboptions.items()) }@
|
||||
@{ loop(value.suboptions|dictsort) }@
|
||||
{% elif value.suboptions[0].items %}
|
||||
@{ loop(value.suboptions[0].items()) }@
|
||||
@{ loop(value.suboptions[0]|dictsort) }@
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
@ -324,9 +324,9 @@ Facts returned by this module are added/updated in the ``hostvars`` host facts a
|
|||
# ---------------------------------------------------------#}
|
||||
{% if value.contains %}
|
||||
{% if value.contains.items %}
|
||||
@{ loop(value.contains.items()) }@
|
||||
@{ loop(value.contains|dictsort) }@
|
||||
{% elif value.contains[0].items %}
|
||||
@{ loop(value.contains[0].items()) }@
|
||||
@{ loop(value.contains[0]|dictsort) }@
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
@ -394,9 +394,9 @@ Common return values are documented :ref:`here <common_return_values>`, the foll
|
|||
# ---------------------------------------------------------#}
|
||||
{% if value.contains %}
|
||||
{% if value.contains.items %}
|
||||
@{ loop(value.contains.items()) }@
|
||||
@{ loop(value.contains|dictsort) }@
|
||||
{% elif value.contains[0].items %}
|
||||
@{ loop(value.contains[0].items()) }@
|
||||
@{ loop(value.contains[0]|dictsort) }@
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
|
Loading…
Reference in a new issue