{% extends 'user/user_base.html' %} {% block user_content %}

搜索图书

{% if queryval%} {% else %} {% endif %}
{% if bookattr=="文档名称" %} {% for document in queryresult%}
文档大小: {{document['doc_size']}}KB 上传日期: {{document['doc_date']}} 文档类型: {{document['doc_type']|replace("application/", "")|truncate(20, False, '...')}}
{% endfor %} {% elif bookattr=="评论标题" %} {% for note in queryresult%}
日期: {{note['note_date']}} 摘要: {{note['note_content']|truncate(30, False, '...')}}
{% endfor %} {% else %} {% for book in queryresult%}
作者: {{book['book_author']}} 语言: {{book['book_lang']}} 出版社: {{book['book_publisher']}}
{% endfor %} {% endif %}
    {% if page_first%}
  • {% else %}
  • {% endif %} 上一页
  • {% if page_last%}
  • {% else %}
  • {% endif %} 下一页
{% endblock %}