{% extends "base.html" %} {% block title %}Browse Drive{% endblock %} {% block styles %} {% endblock %} {% block content %}
{% for item in items %}
{% if item.type == 'folder' %} {% set link = '/drive/api/browse/' + item.path if is_api else '/drive/browse/' + source.id|string + '/' + item.path %} {% set icon = 'bi-folder-fill text-warning' %} {% else %} {% set link = '/drive/api/open/' + item.path if is_api else '/drive/file/' + source.id|string + '/' + item.path %} {% if item.type == 'pdf' %} {% set icon = 'bi-file-earmark-pdf-fill text-danger' %} {% else %} {% set icon = 'bi-file-earmark-image-fill text-info' %} {% endif %} {% endif %}
{{ item.name }}
{% else %}

Empty folder or not synced yet.

{% endfor %}
{% for item in items %} {% if item.type == 'folder' %} {% set link = '/drive/api/browse/' + item.path if is_api else '/drive/browse/' + source.id|string + '/' + item.path %} {% set icon = 'bi-folder-fill text-warning' %} {% else %} {% set link = '/drive/api/open/' + item.path if is_api else '/drive/file/' + source.id|string + '/' + item.path %} {% if item.type == 'pdf' %} {% set icon = 'bi-file-earmark-pdf-fill text-danger' %} {% else %} {% set icon = 'bi-file-earmark-image-fill text-info' %} {% endif %} {% endif %} {% endfor %}
Type Name Action
{{ item.name }}
{% endblock %}