Skip to content

Commit 13253f5

Browse files
authored
feat(finding list): Add planned_remediation_version (#13261)
1 parent a2a52f1 commit 13253f5

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

dojo/templates/dojo/findings_list_snippet.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,10 @@ <h3 class="has-filters">
399399
{% trans "Service" %}
400400
</th>
401401
<th scope="col">
402-
{% trans "Planned Remediation" %}
402+
{% trans "Planned Remediation Date" %}
403+
</th>
404+
<th scope="col">
405+
{% trans "Planned Remediation Version" %}
403406
</th>
404407
{% if filter_name != 'Closed' %}
405408
<th scope="col">
@@ -730,6 +733,9 @@ <h3 class="has-filters">
730733
<td class="nowrap">
731734
{% if finding.planned_remediation_date %}{{ finding.planned_remediation_date }}{% endif %}
732735
</td>
736+
<td class="nowrap">
737+
{% if finding.planned_remediation_version %}{{ finding.planned_remediation_version }}{% endif %}
738+
</td>
733739
{% if filter_name != 'Closed' %}
734740
<td class="nowrap">
735741
{% if finding.reviewers %}
@@ -828,6 +834,7 @@ <h3 class="has-filters">
828834
{% endif %}
829835
{ "data": "service" },
830836
{ "data": "planned_remediation_date" },
837+
{ "data": "planned_remediation_version" },
831838
{% if filter_name != 'Closed' %}
832839
{ "data": "reviewers" },
833840
{% endif %}

0 commit comments

Comments
 (0)