• Home
  • {% for item in menu_items %}
  • {{ item.title }} {% if item.children.exists %}
      {% for child in item.children.all %}
    • {{ child.title }} {% if child.children.exists %}
        {% for sub_child in child.children.all %}
      • {{ sub_child.title }} {% if sub_child.children.exists %}
          {% for sub_child1 in sub_child.children.all %}
        • {{ sub_child1.title }}
        • {% endfor %}
        {% endif %}
      • {% endfor %}
      {% endif %}
    • {% endfor %}
    {% endif %}
  • {% endfor %}