Skip to content

Commit

Permalink
Merge branch 'main' into fix-boefje-env-vars
Browse files Browse the repository at this point in the history
  • Loading branch information
dekkers authored Nov 11, 2024
2 parents 38e42d5 + bf3267a commit 2373c32
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,13 @@ <h5>{% translate "Host:" %} {{ ip.human_readable }}</h5>
<tbody>
{% for finding_type in findings %}
<tr>
<td>{{ finding_type.description }}</td>
<td>
{% if finding_type.description %}
{{ finding_type.description }}
{% else %}
{{ finding_type.id }}
{% endif %}
</td>
<td>
<span class="{{ finding_type.risk_severity }}">{{ finding_type.risk_severity|capfirst }}</span>
</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,13 @@ <h5>{% translate "Host:" %} {{ ip }}</h5>
<tbody>
{% for finding_type in findings %}
<tr>
<td>{{ finding_type.description }}</td>
<td>
{% if finding_type.description %}
{{ finding_type.description }}
{% else %}
{{ finding_type.id }}
{% endif %}
</td>
<td>
<span class="{{ finding_type.risk_severity }}">{{ finding_type.risk_severity|capfirst }}</span>
</td>
Expand Down

0 comments on commit 2373c32

Please sign in to comment.