{% extends 'oj_base.html' %} {% block title %} 我的提交列表 {% endblock %} {% block body %} {% load submission %}
{% for item in submissions %} {% endfor %}
# 用户 题目名称 提交时间 运行时间
{% if item.show_link %} {{ forloop.counter |add:start_id }} {% else %} {{ forloop.counter |add:start_id }} {% endif %} {{ item.user.username }} {{ item.title }} {{ item.create_time }} {{ item.language|translate_language }} {% if item.accepted_answer_time != None %} {{ item.accepted_answer_time }}ms {% else %} -- {% endif %} {{ item.result|translate_result }}
{% if not submissions %}

你还没有提交记录!

{% endif %}
{% endblock %}