{% for tab in tabs_top_level %}
{% if not tab.is_delete %}
{% if tab.requires_pk %}
{% url tab.url object.pk as tab_href %}
{% else %}
{% url tab.url as tab_href %}
{% endif %}
{% endif %}
{% endfor %}
{% for folder in tab_folders %}
{% for tab in folder.tabs %}
{% if tab.requires_pk %}
{% url tab.url object.pk as tab_href %}
{% else %}
{% url tab.url as tab_href %}
{% endif %}
{% endfor %}
{% if not folder.tabs %}
No tabs in folder
{% endif %}
{% endfor %}
{% for tab in tabs_top_level %}
{% if tab.is_delete %}
{% if tab.requires_pk %}
{% url tab.url object.pk as tab_href %}
{% else %}
{% url tab.url as tab_href %}
{% endif %}
{% endif %}
{% endfor %}
{% block content %}
{% if include_detail_content %}
{% include include_detail_content %}
{% endif %}
{% endblock content %}