{% extends "base.html" %} {% block title %}列表视图 - deepdive-search{% endblock %} {% block content %}

搜索记录

{% for record in records %} {% endfor %} {% if not records %} {% endif %}
领域 布尔表达式 置信度 标签 创建时间 操作
{{ record.domain }} {{ record.bool_result.expression.raw_expression[:100] }}{% if record.bool_result.expression.raw_expression|length > 100 %}...{% endif %} {{ (record.bool_result.confidence_score * 100)|int }}% {% for t in record.tags[:3] %} {{ t }} {% endfor %} {{ record.created_at[:10] }}
暂无搜索记录
{% if total_pages > 1 %}
{% if page > 1 %} 上一页 {% endif %} 第 {{ page }} / {{ total_pages }} 页(共 {{ total }} 条) {% if page < total_pages %} 下一页 {% endif %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}