diff --git a/template/oj/submission/my_submissions_list.html b/template/oj/submission/my_submissions_list.html
index b381f5c9..e13d978b 100644
--- a/template/oj/submission/my_submissions_list.html
+++ b/template/oj/submission/my_submissions_list.html
@@ -2,59 +2,59 @@
{% block body %}
- {% load submission %}
-
-
-
-
-
-
- | # |
- 提交时间 |
- 结果 |
- 运行时间 |
- 语言 |
-
-
-
- {% for item in submissions %}
-
- | {{ item.id }} |
- {{ item.create_time }} |
- {{ item.result|translate_result }} |
-
- {% if item.accepted_answer_time %}
- {{ item.accepted_answer_time }}ms
- {% else %}
- --
- {% endif %}
- |
-
- {{ item.language|translate_language }}
- |
-
- {% endfor %}
+{% load submission %}
+
+
+
+
+
+
+ | # |
+ 提交时间 |
+ 结果 |
+ 运行时间 |
+ 语言 |
+
+
+
+ {% for item in submissions %}
+
+ | {{ item.id }} |
+ {{ item.create_time }} |
+ {{ item.result|translate_result }} |
+
+ {% if item.accepted_answer_time %}
+ {{ item.accepted_answer_time }}ms
+ {% else %}
+ --
+ {% endif %}
+ |
+
+ {{ item.language|translate_language }}
+ |
+
+ {% endfor %}
-
-
-
-
+
+
+
+
{% endblock %}