Conflicts:
	contest/views.py
修复冲突,修改了不恰当的函数名
This commit is contained in:
sxw@401
2015-09-17 11:33:55 +08:00
26 changed files with 215 additions and 133 deletions

View File

@@ -45,7 +45,12 @@
{% for item in result %}
<tr>
<th scope="row">{{ forloop.counter }}</th>
<td>{{ item.username }}</td>
<td>
{{ item.username }}
{% if show_real_name %}
{{ item.real_name }}
{% endif %}
</td>
<td>{{ item.total_ac }} / {{ item.total_submit }}</td>
<td>{% if item.total_time %}{{ item.total_time }}{% else %}--{% endif %}</td>
{% for problem in item.problems %}