Skip to content

Commit

Permalink
removes columns from findings list snippet
Browse files Browse the repository at this point in the history
  • Loading branch information
inesmartins-swordhealth committed May 20, 2024
1 parent b757caf commit 6f8ddd1
Showing 1 changed file with 0 additions and 44 deletions.
44 changes: 0 additions & 44 deletions dojo/templates/dojo/findings_list_snippet.html
Original file line number Diff line number Diff line change
Expand Up @@ -364,24 +364,6 @@ <h3 class="has-filters">
{% trans "SLA" %}
</th>
{% endif %}
<th>
{% trans "Planned Remediation" %}
</th>
<th>
{% trans "Group" %}
</th>
<th>
{% trans "Service" %}
</th>
<th>
{% trans "EPSS Score" %}
</th>
<th>
{% trans "EPSS Percentile" %}
</th>
<th>
{% trans "Reporter" %}
</th>
{% endblock header %}
</tr>
</thead>
Expand Down Expand Up @@ -671,32 +653,6 @@ <h3 class="has-filters">
{{ finding|finding_sla }}
</td>
{% endif %}
<td class="nowrap">
{% if finding.planned_remediation_date %}{{ finding.planned_remediation_date }}{% endif %}
</td>
{% if 'is_finding_groups_enabled'|system_setting_enabled %}
<td class="centered">
{% if finding.has_finding_group %}
<a href="{% url 'view_finding_group' finding.finding_group.id %}" title="{{ finding.finding_group.name }}">{{ finding.finding_group.name }}</a>
{% endif %}
</td>
{% endif %}
<td>
{% if finding.service %}{{ finding.service }}{% endif %}
</td>
<td class="nowrap">
{{ finding.epss_score|format_epss }}
</td>
<td class="nowrap">
{{ finding.epss_percentile|format_epss }}
</td>
<td>
{% if finding.reporter.get_full_name and finding.reporter.get_full_name.strip %}
{{ finding.reporter.get_full_name }}
{% else %}
{{ finding.reporter }}
{% endif %}
</td>
{% endblock body %}
</tr>
{% endfor %}
Expand Down

0 comments on commit 6f8ddd1

Please sign in to comment.