PCv5/app/templates/widgets/attachments.html

17 lines
364 B
HTML

{% macro attachments(comment) %}
{% if comment.attachments %}
<summary>Pièces-jointes</summary>
<details>
<table>
<tr><th>Nom</th><th>Taille</th></tr>
{% for a in comment.attachments %}
<tr>
<td><a href="{{ a.url }}">{{ a.name }}</a></td>
<td>{{ a.size }}</td>
</tr>
{% endfor %}
</table>
</details>
{% endif %}
{% endmacro %}