{% extends "base.html" %} {% block title %}{{ contest.name }} - 智联青云{% endblock %} {% block content %}
{% if contest.status == 'abolished' %}
⚠️ 该杯赛已被废止,所有考试已关闭,无法报名或参加考试。
{% endif %} {% if not contest.visible and is_owner %}
该杯赛尚未发布,仅负责人和管理员可见。完善资料后请点击发布。
{% endif %}

{{ contest.name }} {% if contest.status == 'abolished' %} 已废止 {% endif %}

{{ contest.start_date }} {{ contest.participants }}人已报名
{% if contest.status != 'abolished' %} {% if user %} {% if not is_member %} 申请成为本杯赛老师 {% endif %} {% if is_member %} 题库管理 {% endif %} {% if is_owner %} 创建考试 审批老师申请 上传历年真题 编辑主页 {% endif %} {% else %} 登录后报名 {% endif %} {% endif %}

历年真题

{% set papers = contest.get_past_papers() %} {% if papers %}
{% for paper in papers %}
{{ paper.year }} {{ paper.title }}
下载
{% endfor %}
{% else %}
暂无历年真题,敬请期待!
{% endif %}

考试列表

{% if is_owner %} {% endif %}
加载中...

主办方信息

{{ contest.organizer }}

{{ contest.description[:100] + '...' if contest.description|length > 100 else contest.description }}

{% if contest.responsible_person %}
报备信息
责任人 {{ contest.responsible_person }}
电话 {{ contest.responsible_phone }}
邮箱 {{ contest.responsible_email }}
机构 {{ contest.organization }}
{% endif %} {% if contest.contact %}
联系方式
{{ contest.contact }}
{% endif %}

成绩排行榜

加载中...

讨论区

{% if user and can_post %}
{% elif user and not can_post %}
⚠️ 您需要报名该杯赛并至少参与一次考试,才能参与讨论。
{% endif %}
加载中...
{% if is_owner %} {% endif %} {% endblock %} {% block scripts %} {% endblock %}