{% for t, label, color in [('','全部','secondary'),('text','文本','light'),
('image','图片','success'),('audio','音频','warning'),
('video','视频','danger')] %}
{{ label }}
{{ counts[t if t else 'total'] }}
{% endfor %}
{% if pagination.items %}
{% for res in pagination.items %}
{% if res.resource_type == 'image' and res.file_path and res.download_status != 'downloading' %}
{% else %}
{% endif %}
{% if res.download_status in ('pending','downloading') %}
下载中 {{ res.download_progress }}%
{% elif res.download_status == 'failed' %}
失败
{% endif %}
{{ res.title }}
{{ res.resource_type }}{{ res.source_type }}
{% if res.file_size %}
{{ res.file_size | filesize }}
{% endif %}
{% if res.folder and not folder_id %}
{{ res.folder.name | truncate(12, True) }}
{% endif %}