{% extends "layout/basic.html" %} {% import "components/contest.html" as contest with context %} {% import "components/problem.html" as problem with context %} {% block content %} {{ set(UiContext, 'tdoc', tdoc) }}

{{ _('Contest Clarifications') }}

{% if not tcdocs.length %} {{ nothing.render('Oh, there is no clarification!', compact=true) }} {% else %}
    {% for doc in tcdocs %}
  • {{_('Subject') }}: {{ contest.render_clarification_subject(tdoc,pdict,doc.subject) }} | {% if doc.owner == 0 %}{{ _('Jury') }}{% else %}{{ user.render_inline(udict[doc.owner], badge=false) }}{% endif %} @ {{ datetimeSpan(doc._id)|safe }}
    {% if doc.owner %} {% endif %}
    {{ doc['content']|markdown|safe }}
      {%- for rdoc in doc['reply'] -%}
    •         
      {{ _('Jury') }}
      {{ rdoc['content']|markdown|safe }}
    • {%- endfor -%}
  • {% endfor %}
{% endif %}

{{ _('Send Broadcast Message') }}

{% include 'partials/contest_sidebar_management.html' %}
{% endblock %}