12 lines
230 B
Twig
12 lines
230 B
Twig
|
<table>
|
||
|
{% for comment in file.data.comments %}
|
||
|
<tr>
|
||
|
<td>
|
||
|
{{ comment.text }}
|
||
|
<br />
|
||
|
By {{ comment.author }} {{ comment.email }}
|
||
|
</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</table>
|