mirror of
https://github.com/Doctorado-ML/beflask.git
synced 2025-08-16 15:45:51 +00:00
13 lines
375 B
HTML
13 lines
375 B
HTML
{% macro excel_button(files, function="excelSend") %}
|
|
{% if files %}
|
|
{% set call %}
|
|
{{ function }}({{ files }})
|
|
{% endset %}
|
|
{% else %}
|
|
{% set call = function + "()" %}
|
|
{% endif %}
|
|
<button class="btn btn-primary btn-small" onclick="{{ call }}">
|
|
<i class="mdi mdi-file-excel"></i> Excel
|
|
</button>
|
|
{% endmacro %}
|