{% extends 'base.html' %} {% from 'bootstrap/pagination.html' import render_pagination %} {% from 'macros.html' import photo_card, user_card with context %} {% block title %}搜索: {{ q }}{% endblock %} {% block content %}
{% if results %}
{{ results|length }} 结果
{% for item in results %} {% if category == 'photo' %} {{ photo_card(item) }} {% elif category == 'user' %} {{ user_card(item) }} {% else %} {{ item.name }} {{ item.photos|length }} {% endif %} {% endfor %} {% else %}
无结果
{% endif %}
{% if results %} {% endif %} {% endblock %}