{% for breadcrumb in breadcrumbs %} {% if loop.last %}
{{ breadcrumb.name }}
{% elif loop.first and not loop.last %}
{{ breadcrumb.name }}
{% else %}
{{ breadcrumb.name }}
{% endif %}
/
{% endfor %}
{% for file in files %}
{% if file.path_type == "Dir" %}
{% elif file.path_type == "File" %}
{% elif file.path_type == "SymlinkDir" %}
{% else %}
{% endif %}
{{ file.name }}
{% endfor %}