{% extends "tbk/web/base.html" %} {% comment %} 参数: args : GuessYouLikeArgs data_list : Optional[List[TbkItemInfo]] {% endcomment %} {% load device_render %} {% load static %} {% block title %} {% with name=request.GET.name %} {% if name %}奇遇淘客 -- {{ name }} 搜索结果{% else %}奇遇淘客 Web 端 -- 首页{% endif %} {% endwith %} {% endblock %} {% block content %}
{% with name=request.GET.name %} {% endwith %}
{% for item in data_list %}
背景图片
{{ item.title_short }}
{{ item.price_coupon }}元
月销: {{ item.sale_month }}
{{ item.price_actual }}
{{ item.price_origin }}
{% if show_coupon %}
{{ item.commission_money }}
{% endif %}
{% endfor %}
{% with name=request.GET.name %} {% if page > 1 %} 上一页 {% endif %} {% if data_list|length > 0 %} 下一页 {% endif %} {% endwith %}
{% endblock %}