Revert "修改比赛单个题目列表的样式"

This reverts commit dc50b8e71f.
This commit is contained in:
hohoTT 2015-09-05 19:06:41 +08:00
parent dc50b8e71f
commit 3df06adbaa

View File

@ -25,12 +25,10 @@
</thead> </thead>
<tbody> <tbody>
{% for item in submissions %} {% for item in submissions %}
<tr> <tr class="{{ item.result|translate_result_class }}">
<th scope="row"><a href="/submission/{{ item.id }}/">{{ forloop.counter }}</a></th> <th scope="row"><a href="/submission/{{ item.id }}/">{{ forloop.counter }}</a></th>
<td>{{ item.create_time }}</td> <td>{{ item.create_time }}</td>
<td> <td>{{ item.result|translate_result }}</td>
{{ item.language|translate_language }}
</td>
<td> <td>
{% if item.accepted_answer_time %} {% if item.accepted_answer_time %}
{{ item.accepted_answer_time }}ms {{ item.accepted_answer_time }}ms
@ -38,8 +36,8 @@
-- --
{% endif %} {% endif %}
</td> </td>
<td class="alert-{{ item.result|translate_result_class }}"> <td>
<strong>{{ item.result|translate_result }}</strong> {{ item.language|translate_language }}
</td> </td>
</tr> </tr>
{% endfor %} {% endfor %}