{% endfor %}
\ No newline at end of file
diff --git a/benchmark/scripts/templates/partials/table_report_bootstrap.html b/benchmark/scripts/templates/partials/table_report_bootstrap.html
index 20f56da..b3672b8 100644
--- a/benchmark/scripts/templates/partials/table_report_bootstrap.html
+++ b/benchmark/scripts/templates/partials/table_report_bootstrap.html
@@ -78,6 +78,7 @@
Total score: {{ "%.6f" % (data.results | sum(attribute="score")) }}
+ Number of files: {{ data.results | length }}
\ No newline at end of file
diff --git a/benchmark/scripts/templates/partials/table_report_bulma.html b/benchmark/scripts/templates/partials/table_report_bulma.html
index ea5d400..371fa65 100644
--- a/benchmark/scripts/templates/partials/table_report_bulma.html
+++ b/benchmark/scripts/templates/partials/table_report_bulma.html
@@ -84,6 +84,7 @@
Total score: {{ "%.6f" % (data.results | sum(attribute="score")) }}
+
Number of files: {{ data.results | length }}
\ No newline at end of file
diff --git a/benchmark/scripts/templates/partials/table_select.html b/benchmark/scripts/templates/partials/table_select.html
index d217c0f..a313e49 100644
--- a/benchmark/scripts/templates/partials/table_select.html
+++ b/benchmark/scripts/templates/partials/table_select.html
@@ -7,24 +7,28 @@
Date
Time
Stratified
+
Title
+
Score
- {% for file in files %}
- {% set parts = file.split('_') %}
- {% set stratified = parts[6].split('.')[0] %}
-
{% endfor %}
\ No newline at end of file
diff --git a/benchmark/scripts/templates/partials/table_select_design.html b/benchmark/scripts/templates/partials/table_select_design.html
index 5c1589a..7c88002 100644
--- a/benchmark/scripts/templates/partials/table_select_design.html
+++ b/benchmark/scripts/templates/partials/table_select_design.html
@@ -1,8 +1,7 @@
Benchmark Results
-
diff --git a/benchmark/scripts/templates/report.html b/benchmark/scripts/templates/report.html
index ce91983..23f47e8 100644
--- a/benchmark/scripts/templates/report.html
+++ b/benchmark/scripts/templates/report.html
@@ -1,11 +1,7 @@
{% set title = "Report Viewer" %}
-{% if used_framework == "bootstrap" %}
- {% extends "base_bootstrap.html" %}
-{% else %}
- {% extends "base_bulma.html" %}
-{% endif%}
+{% extends "base.html" %}
{% block content%}
- {% if used_framework == "bootstrap" %}
+ {% if framework == "bootstrap" %}
{% set center = "text-center" %}
{% set right = "text-end" %}
{% include "partials/table_report_bootstrap.html" %}
diff --git a/benchmark/scripts/templates/select.html b/benchmark/scripts/templates/select.html
index 7ab074c..74cfdb5 100644
--- a/benchmark/scripts/templates/select.html
+++ b/benchmark/scripts/templates/select.html
@@ -1,6 +1,6 @@
{% set title = "Benchmark Results" %}
-{% if used_framework == "bootstrap" %}
- {% extends "base_bootstrap.html" %}
+{% extends "base.html" %}
+{% if framework == "bootstrap" %}
{% set button_class = "btn btn-primary bt-sm" %}
{% set h1_class = "text-center" %}
{% set table_class = "table table-striped table-hover" %}
@@ -9,7 +9,6 @@
onclick="showFile(\''%}
{% set button_post = '\')">View' %}
{% else %}
- {% extends "base_bulma.html" %}
{% set button_class = "button is-primary is-small" %}
{% set h1_class = "title is-1 has-text-centered" %}
{% set table_class = "table is-striped is-hoverable cell-border" %}