mirror of
https://github.com/Doctorado-ML/benchmark.git
synced 2025-08-15 23:45:54 +00:00
807 B
807 B
{% set title = "Report Viewer" %}
{% extends "base.html" %}
{% block content%}
{% if framework == "bootstrap" %}
{% set center = "text-center" %}
{% set right = "text-end" %}
{% set button = "btn btn-primary" %}
{% include "partials/table_report_bootstrap.html" %}
{% else %}
{% set center = "has-text-centered" %}
{% set right = "has-text-right" %}
{% set button = "button is-primary" %}
{% include "partials/table_report_bulma.html" %}
{% endif %}
{% endblock %}
{% block jscript %}
{% if framework == "bootstrap" %}
{% set selected = "selected" %}
{% else %}
{% set selected = "is-selected" %}
{% endif %}
<script>
{% include "partials/report.js" %}
{% include "partials/excelFiles.js" %}
</script>
{% endblock %}