{% extends "oj_base.html" %} {% block title %} 比赛列表 {% endblock %} {% block body %} {% load contest %}
# | 比赛名称 | 开始时间 | 比赛类型 | 状态 | |||
---|---|---|---|---|---|---|---|
{{ item.id }} | {{ item.title }} | {{ item.start_time }} | {% ifequal item.contest_type 0 %}私有小组赛 | {% endifequal %} {% ifequal item.contest_type 1 %}公开赛 | {% endifequal %} {% ifequal item.contest_type 2 %}公开赛(密码保护) | {% endifequal %} {% ifequal item.contest_type 3 %}小组邀请赛 | {% endifequal %}{{ item|contest_status }} |
当前没有合适的比赛,你可以尝试到小组列表申请加入一些小组,以便参加小组内部的比赛
{% include "oj/contest/_contest_filter.html" %} {% endif %}