18 lines
No EOL
726 B
HTML
18 lines
No EOL
726 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.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 }}
|
|
</span>
|
|
<span class="text-muted small">
|
|
{{ comment.creation | global_date_format }}
|
|
</span>
|
|
</div>
|
|
<div class="text-muted">
|
|
{{ comment.content | markdown }}
|
|
</div>
|
|
</div>
|
|
</div> |