{% extends "oj_base.html" %} {% block title %} 题目列表 {% endblock %} {% block body %} {% load problem %}
{% for item in problems %} {% endfor %}
# 题目 难度 通过率
{{ item.id }} {{ item.title }} {% ifequal item.difficulty 1 %} 简单 {% else %} {% ifequal item.difficulty 2 %} 中等 {% else %} 难 {% endifequal %} {% endifequal %} {{ item|accepted_radio }}
{% include "oj/announcement/_announcement_panel.html" %}

分类

    {% for item in tags %}
  • {{ item.name }} {{ item.problem_number }}
  • {% endfor %}
{% endblock %} {% block js_block %} {% endblock %}