Going on with the Comments plugin

Added a frontend form, store comments under data/, basic visualization
options
This commit is contained in:
Flavio Copes 2015-10-06 19:23:02 +02:00
parent 978abff176
commit c18914d3e3
6 changed files with 233 additions and 38 deletions

View 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>