{% extends "base.html" %} {% block title -%} {{ report.title }} {%- endblock %} {% from "macros/forms.html" import render_field, render_submit_field, render_radio_field, easymde_scripts %} {% block scriptextra %} {{ easymde_scripts() }} {% endblock %} {% block content %} {% set url = url_for("report.view", rid=report.id) %}

View audit log {{ _("Edit") }}

Back to reports

{% if report.is_resolved %} Closed {% else %} Open {% endif %} {{ self.title() }}

{{ report.message | markdown }}
{% if report.attachments %}

Attachments

{% endif %}

{% if report.is_resolved %}Reopen report{% else %}Close report{% endif %}

{% if report.is_resolved %} {% else %} {% endif %}

Thread

{% if report.thread %} {% from "macros/threads.html" import render_thread %} {{ render_thread(report.thread, current_user, form=False) }} {% else %}

No thread.

{% endif %}
{% endblock %}