{% extends "two-column-content.html" %} {% set page_type = 'detail' %} {% block left_sidebar %} {% set title = contest.name %} {% include "contest/contest-tabs.html" %} {% endblock %} {% block two_col_js %} {% include "contest/media-js.html" %} {% include "comments/media-js.html" %} {% include "actionbar/media-js.html" %} {% endblock %} {% block two_col_media %} {% include "comments/media-css.html" %} {% include "actionbar/media-css.html" %} {% endblock %} {% block middle_content %} {% include "contest/contest-datetime.html" %}
{{ _('Problem') }} | {{ _('Points') }} | {{ _('AC Rate') }} | {{ _('Users') }} | |
---|---|---|---|---|
{% if problem.is_public %} {{ problem.i18n_name }} {% else %} {{ problem.i18n_name }} {% endif %} | {{ problem.points|floatformat }}{% if problem.partial %}p{% endif %} | {{ problem.ac_rate|floatformat(1) }}% | {% if problem.is_public %} {{ problem.user_count }} {% else %} {{ problem.user_count }} {% endif %} | {% if problem.is_public and problem.has_public_editorial %} {{ _('Editorial') }} {% endif %} |