{% extends "base.html" %} {% block title %}我的收藏 - 太白购物商城{% endblock %} {% block head %} {% endblock %} {% block content %}
我的收藏
共 {{ total_count }} 件商品 {% if total_count > 0 %} {% endif %}
{% if favorites.items %}
{% for favorite in favorites.items %}
{{ favorite.product.name }}
¥{{ "%.2f"|format(favorite.product.price) }} 销量 {{ favorite.product.sales_count }}
{{ favorite.created_at.strftime('%Y-%m-%d') }} {% if favorite.product.status == 1 %} 有货 {% else %} 下架 {% endif %}
{% if favorite.product.status == 1 %} {% endif %}
{% endfor %}
{% if favorites.pages > 1 %} {% endif %} {% else %}

还没有收藏任何商品

去逛逛,收藏心仪的商品吧~

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