PCv5/app/templates/widgets/download_button.html

9 lines
222 B
HTML

{% macro download_button(file) %}
<span class="dl-button">
<a href="{{ file.url }}">{{ file.name }}</a>
<span>{{ file.size | humanize(unit='o') }}</span>
</span>
{% endmacro %}
{{ download_button(file) if file }}