{% 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 %}