{% extends 'user/user_base.html' %} {% block header %} {% endblock %} {% block user_content %}
图书:{{book['book_name']}}
{%if booktype|length > 0 %}
分类标签: {% for atype in booktype %} {{atype['type_name']}} {% endfor %}
{%endif%} {%if book['book_author']%}
作者:{{book['book_author']}}
{% endif %} {%if book['book_publisher']%}
出版社:{{book['book_publisher']}}
{% endif %} {%if book['book_isbn']%}
ISBN:{{book['book_isbn']}}
{% endif %} {%if book['book_lang']%}
语言:{{book['book_lang']}}
{% endif %}
{% if document|length <= 0 %}
暂无
{%endif%} {% for document in documents %}
{{document['doc_name']}}
大小 {{document['doc_size']}} KB 日期{{document['doc_date']}}
{% endfor %}
{% if notes|length <= 0 %}
暂无
{%endif%} {% for note in notes %}
{{note['note_name']}}
日期{{note['note_date']}}

{{note['note_content']}}

{% endfor %}
{% endblock %}