{% extends 'base.html' %} {% block title %}我的资源{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}

我的资源

添加资源
{% for t, label, color in [('','全部','secondary'),('text','文本','light'), ('image','图片','success'),('audio','音频','warning'), ('video','视频','danger')] %} {{ label }} {{ counts[t if t else 'total'] }} {% endfor %}
{% if q %} {% endif %}
{% if pagination.items %}
{% for res in pagination.items %}
{% if res.resource_type == 'image' and res.file_path and res.download_status != 'downloading' %} {{ res.title }} {% 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.description %}

{{ res.description }}

{% endif %}
查看
{{ csrf_token_input() }}
{% endfor %}
{% if pagination.pages > 1 %} {% endif %} {% else %}
暂无资源

点击右上角「添加资源」开始添加

添加资源
{% endif %} {% endblock %}