删除比赛翻页链接

This commit is contained in:
virusdefender
2016-01-06 17:18:53 +08:00
parent 7ae8f4026b
commit 8bf4166d5d
2 changed files with 2 additions and 2 deletions

View File

@@ -48,7 +48,7 @@
<tbody class="rank"> <tbody class="rank">
{% for item in rank %} {% for item in rank %}
<tr> <tr>
<th scope="row">{% if item.total_ac_number %}{{ forloop.counter|add:paging_info.offset}}{% else %}-{% endif %}</th> <th scope="row">{% if item.total_ac_number %}{{ forloop.counter}}{% else %}-{% endif %}</th>
<td> <td>
<a href="/contest/{{ contest.id }}/submissions/?user_id={{ item.user__id }}"> <a href="/contest/{{ contest.id }}/submissions/?user_id={{ item.user__id }}">
{{ item.user__username }} {{ item.user__username }}

View File

@@ -19,7 +19,7 @@
<a href="/contest/{{ contest.id }}/submissions/">提交</a> <a href="/contest/{{ contest.id }}/submissions/">提交</a>
</li> </li>
<li role="presentation"> <li role="presentation">
<a href="/contest/{{ contest.id }}/rank/?paging=true&page=1&page_size=40">排名</a> <a href="/contest/{{ contest.id }}/rank/">排名</a>
</li> </li>
</ul> </ul>
</div> </div>