mirror of
https://github.com/Doctorado-ML/benchmark.git
synced 2025-08-17 00:15:55 +00:00
33 lines
1.5 KiB
HTML
33 lines
1.5 KiB
HTML
{% set title = "Benchmark Results" %}
|
|
{% 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 table-bordered" %}
|
|
{% set button_pre = '<button class="btn btn-primary btn-sm"
|
|
style="--bs-btn-padding-y: .25rem; --bs-btn-padding-x: .5rem; --bs-btn-font-size: .75rem;"
|
|
onclick="showFile(\''%}
|
|
{% set button_post = '\')">View</button>' %}
|
|
{% set selected = "selected" %}
|
|
{% else %}
|
|
{% 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 is-bordered" %}
|
|
{% set button_pre = '<span class="tag is-link is-normal" type="button" onclick="showFile(\'' %}
|
|
{% set button_post = '\')">View</span>' %}
|
|
{% set selected = "is-selected" %}
|
|
{% endif %}
|
|
{% block content %}
|
|
{% include "partials/table_select_design.html" %}
|
|
{% endblock %}
|
|
|
|
{% block jscript %}
|
|
<script src="https://cdn.datatables.net/1.10.25/js/jquery.dataTables.min.js"></script>
|
|
{% if framework == "bootstrap" %}
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.min.js" integrity="sha384-cuYeSxntonz0PPNlHhBs68uyIAVpIIOZZ5JqeqvYYIcEL727kskC66kF92t6Xl2V"
|
|
crossorigin="anonymous"></script>
|
|
{% endif %}
|
|
<script>
|
|
{% include "partials/js_select.js" %}
|
|
</script>
|
|
{% endblock %} |