{% extends '_page.html.twig' %} {% block content %}

{{ quiz.title }}

{{ quiz.description }}

{% if is_open %}

回答する

{% endif %}

回答一覧

{% if answers|length == 0 %} {% if is_ranking_hidden %}

回答が締め切られるまで、回答一覧は表示されません

参加者の方で、ご自身の回答を確認する場合は、こちらからログインしてください

{% else %}

まだ回答がありません

{% endif %} {% else %} {% if is_ranking_hidden %}

回答が締め切られるまで、自分以外の回答や回答のランクは表示されません

{% endif %} {% for answer in answers %} {% endfor %}
ランク ID 作者 サイズ 投稿日時 ステータス
{% if is_ranking_hidden %} ? {% else %} {{ loop.index }} {% endif %} {% if not quiz.isFinished() and answer.author_id != current_user_id %} #{{ answer.answer_number }} {% else %} #{{ answer.answer_number }} {% endif %} {{ answer.author_name }}{% if answer.author_is_admin %} (staff){% endif %} {{ answer.code_size }} byte {{ answer.submitted_at|date('Y-m-d H:i:s', 'Asia/Tokyo') }} {{ answer.execution_status.label() }}
{% endif %} {% endblock %}