{% extends 'gallery/base.html' %} {% block content %}
返回 Gallery
{{ artwork.title }}
{{ artwork.created_at|date:"Y年m月d日" }} {% if artwork.view_count %} · {{ artwork.view_count }} 次浏览 {% endif %}
{% if prev_artwork or next_artwork %}
{% if prev_artwork %}
上一幅
{{ prev_artwork.title|truncatechars:20 }}
{% else %}
{% endif %} {% if next_artwork %}
下一幅
{{ next_artwork.title|truncatechars:20 }}
{% else %}
{% endif %}
{% endif %}

{{ artwork.title }}

{% if artwork.category %}
{{ artwork.category.name }} {{ artwork.created_at|date:"Y年m月d日" }}
{% endif %}

作品描述

{{ artwork.description|linebreaks }}

作品信息

作品编号
ART-{{ artwork.id|stringformat:"04d" }}
上传时间
{{ artwork.created_at|date:"Y-m-d H:i" }}
最后更新
{{ artwork.updated_at|date:"Y-m-d H:i" }}
浏览次数
{{ artwork.view_count }}
排序序号
{{ artwork.order }}
下载原图
{% if related_artworks %}

同分类作品

{% for related in related_artworks %}
{{ related.title }}

{{ related.title }}

{% endfor %}
{% endif %}
{% block extra_js %} {% endblock %} {% endblock %}