{% if request.GET.q %}
“{{ request.GET.q }}” {% trans '的搜索结果' %}
{% endif %} {% if request.GET.tag %}{% trans '含有标签' %} “{{ request.GET.tag }}” {% trans '的结果' %}
{% endif %}-
{% for book in items %}
-
{% if book.rating %} {% else %} {% endif %} {% if book.pub_year %} {{ book.pub_year }}{% trans '年' %} {% if book.pub_month %} {{book.pub_month }}{% trans '月' %} / {% endif %} {% endif %} {% if book.author %} {% trans '作者' %} {% for author in book.author %} {{ author }}{% if not forloop.last %},{% endif %} {% endfor %}/ {% endif %} {% if book.translator %} {% trans '译者' %} {% for translator in book.translator %} {{ translator }}{% if not forloop.last %},{% endif %} {% endfor %}/ {% endif %} {% if book.orig_title %} {% trans '原名' %} {{ book.orig_title }} {% endif %}
{{ book.brief }}
{% for tag_dict in book.tag_list %} {% for k, v in tag_dict.items %} {% if k == 'content' %} {{ v }} {% endif %} {% endfor %} {% endfor %}
{% empty %}
{% trans '无结果' %}
{% endfor %}
{% if items.pagination.has_prev %}
«
‹
{% endif %}
{% for page in items.pagination.page_range %}
{% if page == items.pagination.current_page %}
{{ page }}
{% else %}
{{ page }}
{% endif %}
{% endfor %}
{% if items.pagination.has_next %}
›
»
{% endif %}