lego/templates/macros/resources.html
2019-09-12 17:44:25 +02:00

9 lines
211 B
HTML

{% macro render_resource(item) %}
<tr>
<td><a href="{{ item|url }}">{{ item.file }}</a></td>
<td>{{ item.description }}</td>
<td>{{ item.type}}</td>
<td>{{ item.date }}</td>
</tr>
{% endmacro %}