算法评测平台前端。
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.
 
 
 
 

26 lines
615 B

<% this.title = '练习' %>
<style>
</style>
<% include header %>
<div id="practice_classify">
<table class="ui selectable celled table">
<thead>
<tr>
<th>题目</th>
<th>状态</th>
</tr>
</thead>
<tbody>
<% for (let problemItem of problems){%>
<tr>
<td><a href="<%= problemItem.href %>"><%= problemItem.title %></a></td>
<td><%= problemItem.statusStr %></td>
</tr>
<%}%>
</tbody>
</table>
</div>
<script>
</script>
<% include footer %>