{% for menu in menu_list %} {% if menu.child is defined and menu.child is not empty %}
  • {{ menu.description }}
      {% for child in menu.child %}
    • {{ child.description }}
    • {% endfor %}
  • {% else %}
  • {{ menu.description }}
  • {% endif %} {% endfor %}