{% extends "common-content.html" %}

{% block content_js_media %}
  {% include "comments/media-js.html" %}
  {% include "actionbar/media-js.html" %}
{% endblock %}

{% block content_media %}
  {% include "comments/media-css.html" %}
{% endblock %}

{% block header %}
  <div style="float:right">
    {% if perms.judge.change_problem %}
      [<a href="{{ url('admin:judge_problem_change', problem.id) }}">{{ _('Edit') }}</a>]
    {% endif %}
  </div>
{% endblock %}

{% block body %}
  <div class="content-description">
    {% if not has_solved_problem %}
      <div class="alert alert-danger">{{ _('Remember to use this editorial <b>only</b> when stuck, and <b>not to copy-paste code from it</b>. Please be respectful to the problem author and editorialist. <br><br> <b>Submitting an official solution before solving the problem yourself is a bannable offence.</b>') }}</div>
    {% endif %}
    {% with authors=solution.authors.all() %}
      {% if authors %}
        <p>Authors: {{ link_users(authors) }}</p>
      {% endif %}
    {% endwith %}
    {{ solution.content|markdown|reference|str|safe }}
  </div>
  <hr>
  {% include "actionbar/list.html" %}
  <br>
  {% include "comments/list.html" %}
{% endblock %}

{% block bodyend %}
  {% if REQUIRE_JAX %}
    {% include "mathjax-load.html" %}
  {% endif %}
  {% include "comments/math.html" %}
{% endblock %}