seitime-frappe/frappe/templates/includes/comments/comment.html
2021-11-10 20:42:56 +05:30

14 lines
No EOL
578 B
HTML

{% from "frappe/templates/includes/avatar_macro.html" import avatar %}
<div class="comment-row media my-5">
<div class="comment-avatar">
{{ avatar(user_id=(comment.comment_email or comment.sender), size='avatar-medium') }}
</div>
<div class="comment-content">
<div class="head mb-2">
<span class="title font-weight-bold mr-2">{{ comment.sender_full_name or comment.comment_by }}</span>
<span class="time small text-muted">{{ frappe.utils.pretty_date(comment.creation) }}</span>
</div>
<div class="content">{{ comment.content | markdown }}</div>
</div>
</div>