From c2c1194472740c0bf744ddf2aa3802225c8b4e91 Mon Sep 17 00:00:00 2001 From: virusdefender <1670873886@qq.com> Date: Fri, 11 Sep 2015 20:37:45 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=95=E4=B8=AA=E9=A2=98=E7=9B=AE=E7=9A=84?= =?UTF-8?q?=E6=8F=90=E4=BA=A4=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/oj/problem/my_submissions_list.html | 52 +++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 template/src/oj/problem/my_submissions_list.html diff --git a/template/src/oj/problem/my_submissions_list.html b/template/src/oj/problem/my_submissions_list.html new file mode 100644 index 0000000..3bf7ac5 --- /dev/null +++ b/template/src/oj/problem/my_submissions_list.html @@ -0,0 +1,52 @@ +{% extends 'oj_base.html' %} + +{% block body %} + + {% load submission %} +
+ + {% include "oj/problem/_problem_header.html" %} + {% if submissions %} + + + + + + + + + + + + {% for item in submissions %} + + + + + + + + {% endfor %} + + +
#提交时间语言运行时间结果
{{ forloop.counter }}{{ item.create_time }} + {{ item.language|translate_language }} + + {% if item.accepted_answer_time %} + {{ item.accepted_answer_time }}ms + {% else %} + -- + {% endif %} + + {{ item.result|translate_result }} +
+ {% else %} +

你还没有提交该题目

+ {% endif %} +
+{% endblock %} \ No newline at end of file