{% extends "ui/report_base.html" %} {% load url from future %} {% load icons %} {% load formats %} {% load bob %} {% block contentarea %}

Filtering of the cross

Description

{% for f in form_choice %}
{{ f }} {{ f.label }}
{% endfor %}

Filtering of th range

Description

Support
{% for f in form_support_range %} {{ f }} {% endfor %}
Warranty
{% for f in form_warranty_range %} {{ f }} {% endfor %}
Deprecation
{% for f in form_deprecation_range %} {{ f }} {% endfor %}

Show all devices:

Use this report when you want see all active, or deleted devices

{% for f in form_device_list %}
{{ f }} {{ f.label }}
{% endfor %}
{% if rows %} {% include 'ui/report_devices_table.html' with title=title header=tabele_header rows=rows csv_url=csv_url %} {% else %} No rows {% endif %}
{% endblock %}