{% comment %} -*- coding: utf-8 -*- Copyright © 2018 VMware, Inc. All rights reserved. SPDX-License-Identifier: BSD-2-Clause {% endcomment %} {% load yamconf_tags %}
{% if hide %} ***** Hidden ***** {% else %} {% if value|get_type == 'list' or value|get_type == 'tuple' %} {% for lvalue in value %} {% if forloop.first %} {{ value|length }} values:
    {% endif %}
  1. {% include "yamlconf/value.html" with value=lvalue %}
  2. {% if forloop.last %}
{% endif %} {% empty %} EMPTY LIST {% endfor %} {% elif value|get_type == 'dict' %} {% for key, dvalue in value.items %} {% if forloop.first %} {% endif %} {% if forloop.last %}
Key Value
{{ key }} {% include "yamlconf/value.html" with value=dvalue %}
{% endif %} {% empty %} EMPTY DICTIONARY {% endfor %} {% else %} {{ value|escape }} {% endif %} {% endif %}