Skip to content

Commit

Permalink
chg: [website] Remved useles items from the list of sources in the re…
Browse files Browse the repository at this point in the history
…cent.html template.
  • Loading branch information
cedricbonhomme committed Jan 14, 2025
1 parent b1e86d8 commit 67d7b95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/web/templates/recent.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ <h1>Recent vulnerabilities</h1>
<caption>Vulnerabilities are sorted by update time (recent to old).</caption>
<thead>
<tr>
{%if source in ["cvelistv5", "nvd", "vulnrichment", "fkie_nvd", local_instance_name] %}
{%if source in ["cvelistv5", "nvd", local_instance_name] %}
<th scope="col" class="col-md-2">ID</th>
<th scope="col" class="col-md-1" title="CVSS Base Score">CVSS</th>
<th scope="col" class="col-md">Description</th>
Expand All @@ -60,7 +60,7 @@ <h1>Recent vulnerabilities</h1>
</thead>
<tbody>
{% for vuln_id, vuln in vulns %}
{% if source in ["cvelistv5", "nvd", "vulnrichment", "fkie_nvd", local_instance_name] %}
{% if source in ["cvelistv5", "nvd", local_instance_name] %}
<tr>
<th scope="row">
<a href="{{url_for('home_bp.vulnerability_view', vulnerability_id=vuln_id)}}">{{vuln_id}}</a>
Expand Down

0 comments on commit 67d7b95

Please sign in to comment.