Not display category in problem table

This commit is contained in:
cuom1999 2022-06-05 12:00:21 -05:00
parent 7128845dcf
commit a0c6454933

View file

@ -32,9 +32,6 @@
<th class="pcode"> <th class="pcode">
<a href="{{ sort_links.code }}">{{ _('Problem code') }}</a> <a href="{{ sort_links.code }}">{{ _('Problem code') }}</a>
</th> </th>
<th class="category">
<a href="{{ sort_links.group }}">{{ _('Category') }}{{ sort_order.group }}</a>
</th>
{% if show_types %} {% if show_types %}
<th> <th>
<a href="{{ sort_links.type }}">{{ _('Types') }}{{ sort_order.type }}</a> <a href="{{ sort_links.type }}">{{ _('Types') }}{{ sort_order.type }}</a>
@ -97,9 +94,6 @@
<td class="pcode"> <td class="pcode">
<a class="pcodecell" href="{{ url('problem_detail', problem.code) }}">{{ problem.code }}</a> <a class="pcodecell" href="{{ url('problem_detail', problem.code) }}">{{ problem.code }}</a>
</td> </td>
{% if not request.in_contest_mode %}
<td class="category">{{ problem.group.full_name }}</td>
{% endif %}
{% if show_types %} {% if show_types %}
<td class="types"> <td class="types">
{% for type in problem.types_list %} {% for type in problem.types_list %}