{% extends "base.html" %} {% block title %}签到{% endblock %} {% block content %}

签到任务

共 {{ total }} 条
{% if total == 0 %}
暂无签到任务
{% endif %}
{% for item in list %}
{{ item.knowingName }}
{% if item.isFinishKnowing == 1 %} 已签到 {% elif item.isEnded %} 已结束 {% else %} 进行中 {% endif %}
{{ item.startDate }} {{ item.startTime }} - {{ item.endTime }}
{{ item.sendRole }} · {{ item.sendName }}
{% if item.isPicture == 0 %} 需拍照 {% endif %}
{% endfor %}
{% endblock %}