{% extends "layouts/base.html" %} {% load i18n %} {% load static %} {% load ooi_extra %} {% block content %} {% include 'header.html' %}
{% if ooi_past_due %} {% include 'oois/ooi_past_due_warning.html' with ooi_current=ooi_current %} {% endif %} {% include 'partials/ooi_head.html' with ooi=ooi view='ooi_detail' %} {% include 'oois/ooi_detail_object.html' with ooi=ooi object_details=object_details %}
{% include 'oois/ooi_detail_origins_declarations.html' %} {% include 'oois/ooi_detail_origins_observations.html' %} {% include 'oois/ooi_detail_origins_inference.html' %} {% include 'partials/ooi_detail_related_object.html' with query=mandatory_fields ooi_past_due=ooi_past_due related=related ooi=ooi %}
{% if not ooi|is_finding and not ooi|is_finding_type %} {% include "oois/ooi_detail_findings_overview.html" with severity_summary=findings_severity_summary severity_summary_totals=severity_summary_totals %} {% endif %}

{% translate 'Scan' %} {{ ooi.human_readable }} {% translate 'using boefjes' %}

{% if enabled_boefjes_available %}
{% include 'partials/form/form_errors.html' with form=possible_boefjes_filter_form %} {% for field in possible_boefjes_filter_form %}{{ field }}{% endfor %}
{% endif %} {% if boefjes %}
{% for boefje in boefjes %} {% endfor %}
{% translate 'Boefje' %} {% translate 'Description' %} {% translate 'Scan profile' %} {% translate 'Scan' %}
{{ boefje.name }} {{ boefje.description }} {% include 'partials/scan_level_indicator.html' with value=boefje.scan_level.value %} {% include 'partials/form/single_action_form.html' with btn_text="Start Scan" action='start_scan' key='boefje_id' value=boefje.id %}
{% else %} {% if not enabled_boefjes_available %}

{% translate 'There are no boefjes enabled to scan an OOI of type' %} "{{ ooi.get_ooi_type }}". {% translate 'See' %} KAT-alogus {% translate 'to find and enable boefjes that can scan within the current level.' %}

{% else %}

{% translate 'There are no boefjes available within the current clearance level of' %} "{{ ooi.human_readable }}". {% translate 'See' %} KAT-alogus {% translate 'to find and enable boefjes that can scan within the current level.' %}

{% translate 'Or if you have the authorization, upgrade the clearance level of' %} "{{ ooi.human_readable }}".

{% endif %} {% endif %}
{% endblock %}