{% if 'short' in service %}{{ service.short }}{% else %}{{ name }}{% endif %}
{% if 'description' in service %}{{ service.description }}{% endif %}
{% if 'ports' in service %}
{% if 'tcp' in service.ports %}
{% for v in service.ports.tcp %}{% endfor %}
{% endif %}
{% if 'udp' in service.ports %}
{% for v in service.ports.udp %}{% endfor %}
{% endif %}
{% if 'modules' in service %}
{% for v in service.modules %}{% endfor %}
{% endif %}
{% endif %}
{% if 'destinations' in service %}
{% if 'ipv4' in service.destinations %}
{% for v in service.destinations.ipv4 %}{% endfor %}
{% endif %}
{% if 'ipv6' in service.destinations %}
{% for v in service.destinations.ipv6 %}{% endfor %}
{% endif %}
{% endif %}