Files
beflask/app/results/templates/macros.html
2023-06-06 17:25:47 +02:00

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 %}