{% extends "base.html" %} {% block content %}

订单记录

{% for o in orders %} {% endfor %} {% if not orders %} {% endif %}
ID账号商品链接抢购时间 状态详情记录时间
{{ o.id }} {{ o.account_name or '-' }} {% if o.target_url %} {{ o.target_url[:40] }}... {% else %}-{% endif %} {{ o.snatch_time or '-' }} {{ o.status }} {{ o.detail or '-' }} {{ o.created_at }}
暂无订单记录
{% endblock %}