You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
2.3 KiB
54 lines
2.3 KiB
<% this.title = '排名' %> |
|
<% include header %> |
|
|
|
<div class="padding"> |
|
<form action="<%= syzoj.utils.makeUrl(['find_user']) %>" class="ui mini form" method="get" role="form" style="margin-bottom: 25px; text-align: right; "> |
|
<div class="ui action left icon input inline" style="width: 180px; margin-right: 77px; "> |
|
<i class="search icon"></i><input name="nickname" placeholder="用户名" type="text"> |
|
<button class="ui mini button" type="submit">查找用户</button> |
|
</div> |
|
</form> |
|
<table class="ui very basic center aligned table" style="table-layout: fixed; "> |
|
<thead> |
|
<tr> |
|
<th style="width: 60px; ">#</th> |
|
<th style="width: 150px; ">用户</th> |
|
<th style="width: 100px; "><%- createSortableTitle('ac_num', '通过数量', false) %></th> |
|
<th style="width: 150px; "><%- createSortableTitle('submit_num', '提交数量', true) %></th> |
|
<th style="width: 150px; ">通过率</th> |
|
<th style="width: 100px; "><%- createSortableTitle('rating', '积分', false) %></th> |
|
</tr> |
|
</thead> |
|
<script> |
|
var lineHeight = 0; |
|
(function () { |
|
var div = document.createElement('div'); |
|
div.style.position = 'fixed'; |
|
div.style.left = -10000; |
|
div.style.visibility = 'hidden'; |
|
div.innerText = '测试,Test.'; |
|
document.body.appendChild(div); |
|
lineHeight = div.clientHeight; |
|
})(); |
|
</script> |
|
<tbody> |
|
<% |
|
let i = (paginate.currPage - 1) * paginate.perPage; |
|
for (let user of ranklist) { |
|
++i; |
|
%> |
|
<tr> |
|
<td><b><%= i %></b></td> |
|
<td><a href="<%= syzoj.utils.makeUrl(['user', user.id]) %>"><% if(!user.nickname || user.nickname.trim() === '') { %> <%= user.username %> <% } else { %> <%= user.nickname %> <% } %></a><% if (user.nameplate) { %><%- user.nameplate %><% } %></td> |
|
<td><%= user.ac_num %></td> |
|
<td><%= user.submit_num %></td> |
|
<td><%= user.ac_num && user.submit_num ? Math.round(user.ac_num / user.submit_num * 10000) / 100.00 + "%" : 0%></td> |
|
<td><%= user.rating %></td> |
|
</tr> |
|
<% } %> |
|
</tbody> |
|
</table> |
|
<br> |
|
<% include page %> |
|
</div> |
|
<% include footer %>
|
|
|