diff --git a/app/results/templates/_table_select.html b/app/results/templates/_table_select.html index a3f8041..eb836d7 100644 --- a/app/results/templates/_table_select.html +++ b/app/results/templates/_table_select.html @@ -34,36 +34,37 @@ onclick="setCheckBoxes(true)"> + + + + + {% for file, data in files.items() %} + {% set parts = file.split('_') %} + {% set stratified = parts[6].split('.')[0] %} + + {{ parts[2] }} + {{ parts[1] }} + {{ parts[3] }} + {{ parts[4] }} + {{ parts[5] }} + {{ 'True' if stratified =='1' else 'False' }} + {{ "%s" % data["title"] }} + {{ "%.6f" % data["score"] }} + + {% set file_best = "best_results_" ~ parts[1] ~ "_" ~ parts[2] ~ ".json" %} + + + + - - - {% for file, data in files.items() %} - {% set parts = file.split('_') %} - {% set stratified = parts[6].split('.')[0] %} - - {{ parts[2] }} - {{ parts[1] }} - {{ parts[3] }} - {{ parts[4] }} - {{ parts[5] }} - {{ 'True' if stratified =='1' else 'False' }} - {{ "%s" % data["title"] }} - {{ "%.6f" % data["score"] }} - - {% set file_best = "best_results_" ~ parts[1] ~ "_" ~ parts[2] ~ ".json" %} - - - - - - {% endfor %} - - + {% endfor %} + + diff --git a/app/results/templates/best.html b/app/results/templates/best.html index 9131649..4fe4aff 100644 --- a/app/results/templates/best.html +++ b/app/results/templates/best.html @@ -33,8 +33,8 @@ -{% endblock %} +{% endblock content %} {% block jscript %} {{ super() }} -{% endblock %} +{% endblock jscript %}