mirror of
https://github.com/Doctorado-ML/benchmark.git
synced 2025-08-16 07:55:54 +00:00
27 lines
807 B
HTML
27 lines
807 B
HTML
{% 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 %}
|