diff options
Diffstat (limited to 'comments/templates/comments.html')
-rw-r--r-- | comments/templates/comments.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/comments/templates/comments.html b/comments/templates/comments.html new file mode 100644 index 0000000..72c4a46 --- /dev/null +++ b/comments/templates/comments.html @@ -0,0 +1,9 @@ +<ul> +{% for comment in comments -%} + <li> + <span>{{ comment.author }}</span> + <p>{{ comment.comment }}</p> + <span>{{ comment.ts }}</span> + </li> +{%- endfor %} +</ul> |