seitime-frappe/frappe/templates/includes/comments/comment.html
Faris Ansari 12d12c640b fix: Web Page (#7593)
- Sender fullname bug
- Rename section SEO to "Header, Breadcrumbs and Meta Tags"
2019-05-30 13:48:03 +05:30

18 lines
789 B
HTML

{% from "frappe/templates/includes/macros.html" import square_image_with_fallback %}
<div class="comment-row media">
{{ square_image_with_fallback(src=frappe.get_gravatar(comment.comment_email or comment.sender), size='48px', alt=comment.sender_full_name, class='align-self-start mr-3') }}
<div class="media-body">
<div class="d-flex justify-content-between align-items-start">
<span class="font-weight-bold text-muted">
{{ comment.sender_full_name or comment.comment_by }}
</span>
<span class="text-muted small">
{{ comment.creation | global_date_format }}
</span>
</div>
<div class="text-muted">
{{ comment.content | markdown }}
</div>
</div>
</div>