{% extends "bee_django_exam/custom_base.html" %} {% load bee_django_exam_filter %} {% block content %} {% include 'bee_django_exam/record/_custom_user_nav.html' %}

{{ user }}的考级列表

{% for record in record_list %} {% endfor %}
考级级别 添加时间 状态
{{ record.grade_name }} {{ record.created_at|date:"Y-m-d H:i" }} {{ record.get_status_text }} {% if record.status == 1 %} {% if record.cert %} 证书图片 {% endif %} {% elif record.status == -1 %} 报名链接 {% endif %}
{% include 'bee_django_exam/paginator.html' %} {% endblock %} {% block scripts %} {% endblock %}