{% import "components/record.html" as record with context %} {% import "components/problem.html" as problem with context %} {% extends "layout/basic.html" %} {% block content %}
{% include "partials/problem_list.html" %}

{{ _('Categories') }}

    {% for category, sub_categories in model.builtin.CATEGORIES %}
  • {{ category }}

    {% if sub_categories | length > 0 %}
      {% for sub_category in sub_categories %}
    1. {{ sub_category }}
    2. {% endfor %}
    {% endif %}
  • {% endfor %}
{% include "partials/problem_lucky.html" %}

{{ _('Search') }}

{% if handler.user.hasPerm(perm.PERM_CREATE_PROBLEM) %}

{{ _('Create Problem') }}

{{ _('You have permissions to create problems for this domain.') }}

{% endif %}

{{ _('Statistics') }}

{% include "partials/problem_stat.html" %}
{% endblock %}