{% load navigation_tags %} {% load display_tags %} {% load authorization_tags %} {% load get_endpoint_status %} {% load static %} {% load i18n %} {% block findings_list %}
|
{% endif %}
{% trans "Severity" %} | {% comment %} The display field is translated in the function. No need to translate here as well{% endcomment %} {% dojo_sort request 'Name' 'title' %} | {% trans "CWE" %} | {% trans "Vulnerability Id" %} | {% if filter_name == 'Closed' %} {% comment %} The display field is translated in the function. No need to translate here as well{% endcomment %} {% dojo_sort request 'Closed Date' 'mitigated' %} {% else %} {% comment %} The display field is translated in the function. No need to translate here as well{% endcomment %} {% dojo_sort request 'Date' 'date' %} {% endif %} | {% trans "Age" %} | {% if system_settings.enable_finding_sla %}{% trans "SLA" %} | {% endif %}{% trans "Reporter" %} | {% trans "Found By" %} | {% trans "Status" %} | {% if system_settings.enable_jira %} {% if jira_project and product_tab or not product_tab %}{% trans "Jira" %} | {% trans "JIRA Age" %} | {% trans "JIRA Change" %} | {% endif %} {% endif %} {% if 'is_finding_groups_enabled'|system_setting_enabled %}{% trans "Group" %} | {% endif %} {% if show_product_column and product_tab is None %}{% comment %} The display field is translated in the function. No need to translate here as well{% endcomment %} {% dojo_sort request 'Product' 'test__engagement__product__name' %} | {% endif %}{% trans "Service" %} | {% trans "Planned Remediation" %} | {% endblock header %}|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{% endif %} | {{ finding.severity_display }} | {% if finding.title %} {{ finding.title|truncatechars_html:60 }} {% else %} {{ finding.id }} {% endif %} {% if finding.file_path %} {% endif %} {% if finding.endpoints.all %} {% endif %} {% if finding.component_name %} {% endif %} {% if finding.notes.all %} ({{ finding.notes.count }}) {% endif %} {% include "dojo/snippets/tags.html" with tags=finding.tags.all %} | {% if finding.cwe > 0 %} {{ finding.cwe|default:"" }} {% endif %} | {% with finding|first_vulnerability_id as first_vulnerability_id %} {% if first_vulnerability_id %} {% if first_vulnerability_id|has_vulnerability_url %} {{ first_vulnerability_id }} {% else %} {{ first_vulnerability_id }} {% endif %} {% endif %} {% endwith %} | {% if filter_name == 'Closed' %} {{ finding.mitigated|date }} {% else %} {{ finding.date }} {% endif %} | {{ finding.age }} | {% if system_settings.enable_finding_sla %}{{ finding|finding_sla }} | {% endif %}{% if finding.reporter.get_full_name and finding.reporter.get_full_name.strip %} {{ finding.reporter.get_full_name }} {% else %} {{ finding.reporter }} {% endif %} | {% if finding.found_by %} {{ finding.found_by.all|join:", " }} {% else %} {{ finding.test.test_type }} {% endif %} | {{ finding|finding_display_status|safe }} {{ finding|import_history }} | {% if system_settings.enable_jira %} {% if jira_project and product_tab or not product_tab %}{% if finding.has_jira_group_issue %} {{ finding.finding_group | jira_key }} {% elif finding.has_jira_issue %} {{ finding | jira_key }} {% endif %} | {% if finding.has_jira_group_issue %} {{ finding.finding_group | jira_creation | timesince }} {% else %} {{ finding | jira_creation | timesince }} {% endif %} | {% if finding.has_jira_group_issue %} {{ finding.finding_group | jira_change | timesince }} {% else %} {{ finding | jira_change | timesince }} {% endif %} | {% endif %} {% endif %} {% if 'is_finding_groups_enabled'|system_setting_enabled %}{% if finding.has_finding_group %} {{ finding.finding_group.name }} {% endif %} | {% endif %} {% if show_product_column and product_tab is None %}{{ finding.test.engagement.product }} | {% endif %}{% if finding.service %}{{ finding.service }}{% endif %} | {% if finding.planned_remediation_date %}{{ finding.planned_remediation_date }}{% endif %} | {% endblock body %}
{% trans "No findings found." %}