* [docs] to be rendered in website * [docs] generating-docs.md * [fix] codacy * [docs] minor updates * [fix] routing
15 lines
569 B
HTML
15 lines
569 B
HTML
<div class="comment-row">
|
|
<div class="inline-block" style="vertical-align: top">
|
|
<div class="avatar avatar-medium" style="margin-top: 11px;">
|
|
<img itemprop="thumbnailUrl" src="{{ frappe.get_gravatar(comment.sender) }}" />
|
|
</div>
|
|
</div>
|
|
<div class="inline-block" style="width: calc(100% - 50px)">
|
|
<h6 itemprop="name">{{ comment.sender_full_name }}
|
|
<span class="text-muted pull-right" itemprop="commentTime">
|
|
{{ comment.creation|global_date_format }}
|
|
</span>
|
|
</h6>
|
|
<div itemprop="commentText">{{ comment.content|markdown }}</div>
|
|
</div>
|
|
</div>
|