mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-11-04 14:49:58 +08:00
99 lines
4.2 KiB
HTML
99 lines
4.2 KiB
HTML
{% extends 'oj_base.html' %}
|
|
{% block title %}
|
|
我的提交列表
|
|
{% endblock %}
|
|
{% block body %}
|
|
{% load submission %}
|
|
<div class="container main">
|
|
<div class="col-md-12 col-lg-12">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>#</th>
|
|
<th>题目名称</th>
|
|
<th>提交时间</th>
|
|
<th>
|
|
<div class="dropdown">
|
|
<a href="#" class="dropdown-toggle" id="languageFilter" data-toggle="dropdown"
|
|
aria-haspopup="true" aria-expanded="true">
|
|
语言<span class="caret"></span>
|
|
</a>
|
|
<ul class="dropdown-menu" aria-labelledby="languageFilter">
|
|
<li><a href="/submissions/?language=1">C</a></li>
|
|
<li><a href="/submissions/?language=2">C++</a></li>
|
|
<li><a href="/submissions/?language=3">Java</a></li>
|
|
<li><a href="/submissions/">取消筛选</a></li>
|
|
</ul>
|
|
</div>
|
|
</th>
|
|
<th>运行时间</th>
|
|
<th>
|
|
<div class="dropdown">
|
|
<a href="#" class="dropdown-toggle" id="resultFilter" data-toggle="dropdown"
|
|
aria-haspopup="true" aria-expanded="true">
|
|
结果<span class="caret"></span>
|
|
</a>
|
|
<ul class="dropdown-menu" aria-labelledby="resultFilter">
|
|
<li><a href="/submissions/?result=0">Accepted</a></li>
|
|
<li><a href="/submissions/?result=6">Wrong Answer</a></li>
|
|
<li><a href="/submissions/?result=1">Runtime Error</a></li>
|
|
<li><a href="/submissions/?result=2">Time Limit Exceeded</a></li>
|
|
<li><a href="/submissions/?result=3">Memory Limit Exceeded</a></li>
|
|
<li><a href="/submissions/?result=4">Compile Error</a></li>
|
|
<li><a href="/submissions/?result=5">Format Error</a></li>
|
|
<li><a href="/submissions/">取消筛选</a></li>
|
|
</ul>
|
|
</div>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for item in submissions %}
|
|
<tr>
|
|
<th scope="row">
|
|
<a href="/submission/{{ item.id }}/">{{ forloop.counter |add:start_id }}</a>
|
|
</th>
|
|
<td>
|
|
<a href="/problem/{{ item.problem_id }}/">{{ item.title }}</a>
|
|
</td>
|
|
<td>{{ item.create_time }}</td>
|
|
<td>
|
|
{{ item.language|translate_language }}
|
|
</td>
|
|
<td>
|
|
{% if item.accepted_answer_time %}
|
|
{{ item.accepted_answer_time }}ms
|
|
{% else %}
|
|
--
|
|
{% endif %}
|
|
</td>
|
|
<td class="alert-{{ item.result|translate_result_class }}">
|
|
<strong>{{ item.result|translate_result }}</strong>
|
|
</td>
|
|
|
|
</tr>
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
</table>
|
|
<nav>
|
|
<ul class="pager">
|
|
{% if previous_page %}
|
|
<li class="previous"><a
|
|
href="/submissions/{{ previous_page }}/{% if filter %}?{{ filter.name }}={{ filter.content }}{% endif %}">
|
|
<span aria-hidden="true">←</span> 上一页</a></li>
|
|
{% endif %}
|
|
{% if next_page %}
|
|
<li class="next"><a
|
|
href="/submissions/{{ next_page }}/{% if filter %}?{{ filter.name }}={{ filter.content }}{% endif %}">下一页 <span
|
|
aria-hidden="true">→</span></a></li>
|
|
{% endif %}
|
|
</ul>
|
|
</nav>
|
|
{% if not submissions %}
|
|
<p>你还没有提交记录!</p>
|
|
{% endif %}
|
|
</div>
|
|
|
|
</div>
|
|
{% endblock %} |