Spaces:
Running
Running
Update templates/result.html
Browse files- templates/result.html +2 -2
templates/result.html
CHANGED
@@ -16,7 +16,7 @@
|
|
16 |
<a href="/">Generate another AI SBOM</a>
|
17 |
<h2>AI SBOM Generated for {{ model_id }}</h2>
|
18 |
|
19 |
-
<h3>Overall Completeness Score: {{ completeness_score.total_score }}
|
20 |
|
21 |
<h3>Section Breakdown</h3>
|
22 |
<table>
|
@@ -27,7 +27,7 @@
|
|
27 |
{% for section, score in completeness_score.section_scores.items() %}
|
28 |
<tr>
|
29 |
<td>{{ section }}</td>
|
30 |
-
<td>{{ score }}</td>
|
31 |
</tr>
|
32 |
{% endfor %}
|
33 |
</tbody>
|
|
|
16 |
<a href="/">Generate another AI SBOM</a>
|
17 |
<h2>AI SBOM Generated for {{ model_id }}</h2>
|
18 |
|
19 |
+
<h3>Overall Completeness Score: {{ completeness_score.total_score }}/100</h3>
|
20 |
|
21 |
<h3>Section Breakdown</h3>
|
22 |
<table>
|
|
|
27 |
{% for section, score in completeness_score.section_scores.items() %}
|
28 |
<tr>
|
29 |
<td>{{ section }}</td>
|
30 |
+
<td>{{ score }}/{{ completeness_score.max_scores[section] }}</td>
|
31 |
</tr>
|
32 |
{% endfor %}
|
33 |
</tbody>
|