{% extends "layouts/base.html" %} {% load i18n %} {% load static %} {% load markdownify %} {% block content %} {% include 'header.html' with breadcrumb_list=breadcrumb_list %}
{% translate 'Object list' as form_title %}

{{ form_title }}

{% include 'partials/form/form_errors.html' with form=select_ooi_filter_form %} {% for field in select_ooi_filter_form %}{{ field }}{% endfor %}
{% if select_oois_form.fields.ooi.choices %} {% include 'partials/form/checkbox_group_table_form.html' with checkbox_group_table_form=select_oois_form btn_text='Start scan' btn_disabled=boefje_disabled key='boefje_id' value=boefje.id action="scan" checkbox_group_table_filter_form=select_ooi_filter_form unique_id="" %} {% else %} {% if has_consumable_oois %} {% blocktranslate %} You currently don't have any objects that meet the scan level of {{ boefje.name }}. Add objects with a complying clearance level, or alter the clearance level of existing objects. {% endblocktranslate %} {% else %} {% blocktranslate %} You currently don't have scannable objects for {{ boefje.name }}. Add objects to use this boefje. This boefje is able to scan objects of the following types: {% endblocktranslate %} {% endif %}
    {% for ooi in boefje.consumes|ooi_types_to_strings %}
  • {{ ooi }}
  • {% endfor %}
{% translate 'Add objects' %} {% endif %}
{% endblock %} {% block html_at_end_body %} {{ block.super }} {% endblock %}