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.
40 lines
1.2 KiB
40 lines
1.2 KiB
<% this.title = '排名' %> |
|
<% include header %> |
|
<div class="padding"> |
|
<form action="<%= syzoj.utils.makeUrl(['find_user']) %>" class="ui mini form" method="get" role="form"> |
|
<div class="inline field"> |
|
<input name="nickname" placeholder="用户名" style="margin-right: 2px;" type="text" value=""><button class="ui mini button" type="submit">查找用户</button> |
|
</div> |
|
</form> |
|
<table class="ui very basic center aligned table"> |
|
<thead> |
|
<tr> |
|
<th>#</th> |
|
<th>用户昵称</th> |
|
<th>个性签名</th> |
|
<th>通过数量</th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
<% |
|
let i = (page - 1) * syzoj.config.page.ranklist; |
|
for (let user of ranklist) { |
|
++i; |
|
%> |
|
<tr> |
|
<td><%= i %></td> |
|
<td><a href="<%= syzoj.utils.makeUrl(['user', user.id]) %>"><%= user.username %></a> |
|
<% if (user.nameplate) { %> |
|
<%- user.nameplate %> |
|
<% } %> |
|
</td> |
|
<td><%- user.information %></td> |
|
<td><%= user.ac_num %></td> |
|
</tr> |
|
<% } %> |
|
</tbody> |
|
</table> |
|
<br> |
|
<% include page %> |
|
</div> |
|
<% include footer %>
|
|
|