{% if request.GET.q %}
{% endif %}
“{{ request.GET.q }}” {% trans '的搜索结果' %}
-
{% for book in items %}
-
{% if request.GET.q %} {{ book.title | highlight:request.GET.q }} {% else %} {{ book.title }} {% endif %} {% 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 | truncate:170 }}
{% empty %}
{% trans '无结果' %}
{% endfor %}