{% for r in records %}
{{ r.timestamp[5:10] if r.timestamp|length > 10 else '' }}
{{ r.timestamp[11:19] if r.timestamp|length > 19 else r.timestamp }}
{{ (r.team_name or '—')[:2] | upper }}
{{ r.team_name or '—' }}
{{ r.challenge_name }}
{{ r.benchmark_id }}
{{ r.flag_id or '—' }} {{ r.flag_value }} {% if r.correct %} 正确 {% else %} 错误 {% endif %} {% if r.correct %} +{{ r.points }} {% else %} {% endif %} {% endfor %}