{% extends "admin/base.html" %} {% block page_title %}打卡详情 · {{date.strftime('%Y-%m-%d')}}{% endblock %} {% block content %}
打卡详情
日期:{{date.strftime('%Y年%m月%d日')}} · 共 {{rows|length}} 人打卡
返回
{% for o in rows %} {% else %} {% endfor %}
序号店员连锁门店连续天数得积分打卡时间打卡IP操作
{{loop.index}} {{o.staff.name if o.staff else '(已删除)'}}
{{o.staff.phone if o.staff}}
{{o.staff.store.chain.name if o.staff and o.staff.store and o.staff.store.chain else '-'}} {{o.staff.store.name if o.staff and o.staff.store else '-'}} {{o.streak}} 天 {{o.points_earned}} {{o.created_at.strftime('%H:%M:%S') if o.created_at}} {{o.ip or '-'}} {% if current_user.role == 'super' %}
{% else %}-{% endif %}
当日无人打卡
{% endblock %}