12 lines
554 B
HTML
12 lines
554 B
HTML
<table class="table table-hover">
|
|
<tr>
|
|
<td width="70px"><a href="{{url_for('user', nickname = post.author.nickname)}}"><img src="{{post.author.avatar(70)}}" /></a></td>
|
|
<td>
|
|
{% autoescape false %}
|
|
<p>{{ _('%(nickname)s said %(when)s:', nickname = '<a href="%s">%s</a>' % (url_for('user', nickname = post.author.nickname), post.author.nickname), when = momentjs(post.timestamp).fromNow()) }}</p>
|
|
{% endautoescape %}
|
|
<p><strong>{{post.body}}</strong></p>
|
|
</td>
|
|
</tr>
|
|
</table>
|