{% load static %} {% load i18n %} {% load admin_url %} {% load mastodon %} {% load oauth_token %} {% load truncate %} {% load highlight %} {% trans 'Nicedb - 搜索结果' %}
{% include 'partial/_navbar.html' %}
{% 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 %}
    {{ book.rating }} {% else %}
    {% trans '暂无评分' %}
    {% 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 %}
没有想要的结果?
或者(≖ ◡ ≖)✧
{% include 'partial/_footer.html' %}
{% comment %} {% endcomment %}