mirror of
https://github.com/Doctorado-ML/beflask.git
synced 2025-08-19 09:05:52 +00:00
9 lines
230 B
HTML
9 lines
230 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
{% include "_table_report.html" %}
|
|
{% endblock %}
|
|
{% block jscript %}
|
|
{{ super() }}
|
|
<script src="{{ url_for('static', filename="js/report.js") }}"></script>
|
|
{% endblock %}
|