{% extends "base.html" %} {% block title %}浏览历史 - 太白购物商城{% endblock %} {% block head %} {% endblock %} {% block content %}
浏览历史
共 {{ total_count }} 件商品 {% if total_count > 0 %} {% endif %}
{% if history.items %}
{% for item in history.items %}
{{ item.product.name }}
¥{{ "%.2f"|format(item.product.price) }} 销量 {{ item.product.sales_count }}
{{ item.product.category.name if item.product.category else "未分类" }}
{{ item.viewed_at.strftime('%Y-%m-%d %H:%M') }} {% if item.product.status == 1 %} 有货 {% else %} 下架 {% endif %}
{% if item.product.status == 1 %} {% endif %}
{% endfor %}
{% if history.pages > 1 %} {% endif %} {% else %}

还没有浏览任何商品

去逛逛,看看有什么好商品~

去首页逛逛
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}