{% if request.GET.q %}
“{{ request.GET.q }}” {% trans '的搜索结果' %}
{% visible_categories as cats %}
{% if request.GET.c and request.GET.c != 'all' %}
全部
{% else %}
全部
{% endif %}
{% if 'book' in cats %}
|
{% if request.GET.c != 'book' %}
书籍
{% else %}
书籍
{% endif %}
{% endif %}
{% if 'movie' in cats or 'tv' in cats %}
|
{% if request.GET.c != 'movietv' %}
影视
{% else %}
影视
{% endif %}
{% endif %}
{% if 'podcast' in cats %}
|
{% if request.GET.c != 'podcast' %}
播客
{% else %}
播客
{% endif %}
{% endif %}
{% if 'music' in cats %}
|
{% if request.GET.c != 'music' %}
音乐
{% else %}
音乐
{% endif %}
{% endif %}
{% if 'game' in cats %}
|
{% if request.GET.c != 'game' %}
游戏
{% else %}
游戏
{% endif %}
{% endif %}
{% if 'performance' in cats %}
|
{% if request.GET.c != 'performance' %}
演出
{% else %}
演出
{% endif %}
{% endif %}
{% endif %}
{% if request.GET.tag %}
{% trans '含有标签' %} “{{ request.GET.tag }}” {% trans '的结果' %}
{% endif %}
{% for item in items %}
{% include '_list_item.html' with show_tags=1 %}
{% empty %}
{% if dup_items %}
无站内条目匹配。 {% if request.user.is_authenticated %}系统会尝试搜索其它网站的条目,点击标题可添加到本站。{% endif %}
如果你在
{% for site in sites %}
{{ site }}
{% if not forloop.last %}/{% endif %}
{% endfor %}
找到了相关条目,也可以把链接(如 https://movie.douban.com/subject/1309046/
)输入到搜索栏中提交保存到本站。
已从结果中略去了来自同一著作或有相同标识号的 {{ dup_items|length }}个条目,点击这里可重新显示
{% for item in dup_items %}
{% include '_list_item.html' with show_tags=1 %}
{% endfor %}
{% endif %}
{% if request.GET.q and request.user.is_authenticated %}
{% trans '正在实时搜索站外条目' %}
{% else %} 登录用户可看到来自其它网站的搜索结果。 {% endif %}
{% if pagination.has_prev %}
«
‹
{% endif %}
{% for page in pagination.page_range %}
{% if page == pagination.current_page %}
{{ page }}
{% else %}
{{ page }}
{% endif %}
{% endfor %}
{% if pagination.has_next %}
›
»
{% endif %}