{% extends "admin/base.html" %} {% load i18n admin_urls static admin_list %} {% block title %}{{ title }}{% endblock %} {% block extrahead %} {{ block.super }} {{ media.css }} {# FIXME: style not confirmed in any browser/monitor but ONE, needs review and adjusting that 320 fixed value at least... #} {% endblock %} {% block content %}

{{ title }}

({{ original.get_state_display }})
{% if original.state == original.States.RUNNING %}
{% endif %} {% if output_list %} {% for line in output_list %} {# NOTE!! use forloop.first because order is reversed, DO NOT CHANGE #}
{{ line.timestamp|date:"d-m-Y H:i:s" }} {{ line.line }}
{% endfor %} {% else %}
{% trans 'No output for this scan (so far).' %}
{% endif %} {% if output_list %}
{% if not full_mode %} skipped some output - {% endif %} view full raw output
{% endif %}
{% endblock %} {% block javascripts %} {{ block.super }} {% if original.state == original.States.RUNNING %} {% endif %} {% endblock javascripts %}