{% extends "pages/base.html" %} {% load i18n %} {% block title %}{{ entry.title }}{% endblock %} {% block content %}

{{ entry.title }}

{% translate "Secret" %}: {{ entry.secret }}

{% translate "Event date" %}: {{ entry.event_date }}

{% translate "Report" %}

{{ entry.report|linebreaks }}

{% if entry.debug_info %}
{% translate "Debug information" %}
{{ debug_pretty }}
{% endif %} {% if image_urls %}
{% translate "Images" %}
{% for image_url in image_urls %}
logbook image
{% endfor %}
{% endif %} {% with attachments=entry.log_attachments.all %} {% if attachments|length %}
{% translate "Attached logs" %}
{% endif %} {% endwith %} {% if entry.debug_document %}
{% translate "Debug document" %}
{% translate "Download JSON" %}
{% endif %}
{% endblock %}