{% extends 'admin/master.html' %} {% block body %}
arrow_back 返回用户列表
基本信息
管理操作
bookmark
{{ collections_count }}
收藏的工具
folder
{{ folders_count }}
收藏分组
{% if folders %}
收藏分组 ({{ folders_count }})
{% for folder in folders %}
{{ folder.icon }}
{{ folder.name }}
{{ folder.collections.count() }} 个工具 {% if folder.is_public %} 公开 {% endif %}
{% endfor %}
{% endif %} {% if recent_collections %}
最近收藏 (最多显示10条)
{% for collection in recent_collections %} {% endfor %}
工具名称 所属分组 收藏时间
{% if collection.site.logo %} {% endif %} {{ collection.site.name }}
{% if collection.folder %} {{ collection.folder.icon }} {{ collection.folder.name }} {% else %} 未分组 {% endif %} {{ collection.created_at.strftime('%Y-%m-%d %H:%M') }}
{% endif %}
{% endblock %}