Going on with the Comments plugin
Added a frontend form, store comments under data/, basic visualization options
This commit is contained in:
parent
978abff176
commit
c18914d3e3
6 changed files with 233 additions and 38 deletions
11
admin/templates/partials/comments-list.html.twig
Normal file
11
admin/templates/partials/comments-list.html.twig
Normal file
|
@ -0,0 +1,11 @@
|
|||
<table>
|
||||
{% for comment in file.data.comments %}
|
||||
<tr>
|
||||
<td>
|
||||
{{ comment.text }}
|
||||
<br />
|
||||
By {{ comment.author }} {{ comment.email }}
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
Loading…
Add table
Add a link
Reference in a new issue