{% extends "base.html" %} {% load navigation_tags %} {% load display_tags %} {% load authorization_tags %} {% block content %} {{ block.super }}

Product List

{% include "dojo/filter_snippet.html" with form=prod_filter.form %}
{% if prod_list %}
{% include "dojo/paging_snippet.html" with page=prod_list page_size=True %}
{% if system_settings.enable_jira %} {% endif %} {% if system_settings.enable_github %} {% endif %} {% for prod in prod_list %} {% if system_settings.enable_jira %} {% endif %} {% if system_settings.enable_github %} {% endif %} {% endfor %}
{% dojo_sort request 'Product' 'name' 'asc' %} Tags Criticality Metadata Eng.JiraGitHub Active (Verified) Findings Vulnerable Hosts / Endpoints Contact {% dojo_sort request 'Product Type' 'prod_type__name' %}
{{ prod.name }} {% with grade=prod|product_grade %} {% if grade %}
{{ grade }}
{% endif %} {% endwith %}
{% include "dojo/snippets/tags.html" with tags=prod.tags.all %} {{ prod.business_criticality|business_criticality_icon }} {{ prod.platform|platform_icon }} {{ prod.lifecycle|lifecycle_icon }} {{ prod.origin|origin_icon }} {{ prod.external_audience|external_audience_icon }} {{ prod.internet_accessible|internet_accessible_icon }} {% if prod.last_engagement_date %} {% else %} {% endif %} {{ prod|jira_project_tag }} {% for github_conf in prod.github_confs %} {% if github_conf.git_conf is not None %} {% endif %} {% endfor %} {% if prod.findings_count %} {{ prod.findings_count }}  ({{ prod.findings_active_verified_count }}) {% else %} 0 {% endif %} {% if prod.endpoint_count %} {{ prod.endpoint_host_count }} / {{ prod.endpoint_count }} {% else %} 0 {% endif %} {% if prod.product_manager %} {% if prod.product_manager != "0" %} {{ prod.product_manager }}, Manager {% if prod.team_manager or prod.technical_contact %}
{% endif %} {% endif %} {% endif %} {% if prod.team_manager %} {% if prod.team_manager != "0" %} {{ prod.team_manager }}, Team Lead {% if prod.product_manager or prod.technical_contact %}
{% endif %} {% endif %} {% endif %} {% if prod.technical_contact %} {% if prod.technical_contact != "0" %} {{ prod.technical_contact }}, Technical {% endif %} {% endif %}
{{ prod.prod_type.name }}
{% include "dojo/paging_snippet.html" with page=prod_list page_size=True %}
{% else %}

No products found.

{% endif %}
{% endblock %} {% block postscript %} {{ block.super }} {% include "dojo/filter_js_snippet.html" %} {% endblock %}