{% extends "layouts/base.html" %} {% load i18n %} {% load static %} {% load ooi_extra %} {% block content %} {% include 'header.html' %}

{% translate 'Object List' %}

{% blocktranslate trimmed %} An overview of your object list. Objects can be added manually or by running boefjes. Click an object for additional information. {% endblocktranslate %}

{% translate 'Currently filtered on:' %} {{ types_display }}

{% include 'partials/ooi_list_toolbar.html' %} {% translate 'Object list' as filter_title %} {% include 'partials/ooi_list_filters.html' with title=filter_title %}
{% with 'ooi_type' as ignore_params %} {% for object in ooi_list %} {% spaceless %} {% endspaceless %} {% endfor %} {% endwith %}
{% translate 'Object list:' %}
{% translate 'Key' %} {% translate 'Type' %} {% translate 'Clearance level' %}
{{ object.human_readable }} {{ object.ooi_type }} {% if object.scan_profile %} {% include 'partials/scan_level_indicator.html' with value=object.scan_profile.level %} {% else %} {% translate 'N/A' %} {% endif %}
{% include 'partials/ooi_list_pagination.html' %}
{% endblock %} {% block html_at_end_body %} {{ block.super }} {% endblock %}