mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-02 04:58:29 +00:00
moved directory structure
This commit is contained in:
14
website/templates/html/comment.html
Normal file
14
website/templates/html/comment.html
Normal file
@@ -0,0 +1,14 @@
|
||||
{#
|
||||
this template generates comment rows for a blog
|
||||
it is to be included in the blog/blog.html template
|
||||
#}
|
||||
|
||||
{% for comment in comment_list %}
|
||||
<div class="comment-row">
|
||||
<div class="comment-title">
|
||||
{{ comment.comment_by_fullname }} - {{ comment.comment_date }}:
|
||||
</div>
|
||||
<p class="comment-content">{{ comment.comment }}</p>
|
||||
<hr>
|
||||
</div>
|
||||
{% endfor %}
|
||||
Reference in New Issue
Block a user