|
|
|
@ -12,7 +12,7 @@
|
|
|
|
|
<thead> |
|
|
|
|
<tr> |
|
|
|
|
<th style="width: 60px; ">#</th> |
|
|
|
|
<th style="width: 150px; "><%- createSortableTitle('username', '用户名', true) %></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> |
|
|
|
@ -39,7 +39,7 @@
|
|
|
|
|
%> |
|
|
|
|
<tr> |
|
|
|
|
<td><b><%= i %></b></td> |
|
|
|
|
<td><a href="<%= syzoj.utils.makeUrl(['user', user.id]) %>"><%= user.username %></a><% if (user.nameplate) { %><%- user.nameplate %><% } %></td> |
|
|
|
|
<td><a href="<%= syzoj.utils.makeUrl(['user', user.id]) %>"><%= 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> |
|
|
|
|