mirror of
https://github.com/Doctorado-ML/beflask.git
synced 2025-08-19 17:15:51 +00:00
12 lines
350 B
HTML
12 lines
350 B
HTML
{% extends "report_tables.html" %}
|
|
{% block content %}
|
|
<div class="alert alert-primary" role="alert">
|
|
<h3>Results for {{ dataset_name }}</h3>
|
|
</div>
|
|
{% include "_table_dataset.html" %}
|
|
{% endblock %}
|
|
{% block jscript %}
|
|
{{ super() }}
|
|
<script src="{{ url_for('static', filename="js/report.js") }}"></script>
|
|
{% endblock %}
|