{% extends "base.html" %} {% block title %}杯赛管理{% endblock %} {% block content %}

杯赛管理

{% for comp in competitions %} {% endfor %}
ID 名称 描述 状态 创建时间 操作
{{ comp.id }} {{ comp.name }} {{ comp.description }} {% if comp.status == 'active' %} 进行中 {% else %} 已停止 {% endif %} {{ comp.created_at }} {% if comp.status == 'active' %}
{% else %} 无操作 {% endif %}
{% endblock %}