mirror of
https://github.com/Doctorado-ML/beflask.git
synced 2025-08-16 23:55:52 +00:00
12 lines
395 B
HTML
12 lines
395 B
HTML
{% from "macros.html" import excel_button %}
|
|
{% extends "base.html" %}
|
|
{% block content %}
|
|
{{ excel_button(["datasets"]) }}
|
|
{% include "_table_datasets.html" %}
|
|
{% endblock %}
|
|
{% block jscript %}
|
|
{{ super() }}
|
|
<script src="{{ url_for('static', filename="js/report.js") }}"></script>
|
|
<script src="{{ url_for('static', filename="js/excelFiles.js") }}"></script>
|
|
{% endblock %}
|