diff --git a/app/app.db b/app/app.db index 4d6ec5c..58f49d5 100644 Binary files a/app/app.db and b/app/app.db differ diff --git a/app/results/templates/_table_report.html b/app/results/templates/_table_report.html index 30d666f..457cd25 100644 --- a/app/results/templates/_table_report.html +++ b/app/results/templates/_table_report.html @@ -51,20 +51,55 @@
{{ excel_button([ file ]) }}
- +
- - - - - - - - + + + + + + + + + + {% for item in data.results %} diff --git a/app/results/templates/report.html b/app/results/templates/report.html index f77941e..261eafb 100644 --- a/app/results/templates/report.html +++ b/app/results/templates/report.html @@ -1,9 +1,29 @@ {% extends "base.html" %} +{% block styles %} + {{ super() }} + + + +{% endblock %} {% block content %} {% include "_table_report.html" %} +
DatasetSamplesFeaturesClassesNodes{{ data.score_name|capitalize }}TimehyperparametersDatasetSamplesFeaturesClassesNodes{{ data.score_name|capitalize }}Timehyperparameters
+ + + + + + + +
IDItem NameItem Price
{% endblock %} {% block jscript %} {{ super() }} + + {% endblock %} diff --git a/app/static/css/main.css b/app/static/css/main.css index f299fa6..218125d 100644 --- a/app/static/css/main.css +++ b/app/static/css/main.css @@ -31,6 +31,7 @@ tbody { body { padding-bottom: 20px; + padding-top: 60px; background-color: #ffb878; } @@ -38,15 +39,11 @@ body { margin-bottom: 20px; } -pre { - background: #ddd; - padding: 10px; -} + h2 { margin-top: 20px; } -footer { - margin: 20px; -} \ No newline at end of file + + diff --git a/app/static/js/report.js b/app/static/js/report.js index 449d070..c47584d 100644 --- a/app/static/js/report.js +++ b/app/static/js/report.js @@ -14,4 +14,4 @@ $(document).ready(function () { $(document).ajaxStop(function(){ $("body").removeClass('ajaxLoading'); }); - }); \ No newline at end of file +}); \ No newline at end of file diff --git a/app/templates/_nav.html b/app/templates/_nav.html index 951cff6..4fbd5e2 100644 --- a/app/templates/_nav.html +++ b/app/templates/_nav.html @@ -1,5 +1,5 @@ {% from 'bootstrap5/nav.html' import render_nav_item %} -