12 lines
510 B
HTML
12 lines
510 B
HTML
<div class="media">
|
|
<a class="pull-left" href="#">
|
|
<img class="media-object" style="width: 48px;" src="{{ frappe.get_gravatar(comment.comment_by) }}" alt="{{ comment.comment_by_fullname }}">
|
|
</a>
|
|
<div class="media-body">
|
|
<h5 class="media-heading" itemprop="name">{{ comment.comment_by_fullname }}</h5>
|
|
<p class="text-muted small">
|
|
<span itemprop="commentTime">{{ comment.creation|global_date_format }}</span>
|
|
</p>
|
|
<div itemprop="commentText">{{ comment.comment|markdown }}</div>
|
|
</div>
|
|
</div>
|