ID: 494d64999040194701ca3b948d4b6fcf356e7a30
29 lines
โ
1002B โ
View raw
| {% extends 'layout.html' %}
{# Set variables for base layour #}
{% set active_page = 'user' %}
{% set title = '' %}
{% block content %}
<div class="user_activity">
{% for comment in replies %}
<div>
{{ comment.text|md2html|safe }}
{# Post info #}
<div class="info">
<a href="../post/{{ comment.postHashId }}#comment-{{ comment.hashId }}">read</a>
<a href="../reply?comment={{ comment.hashId }}">reply</a>
โ
by <a href="{{ url ("user_public", username=comment.username) }}">{{ comment.username }}</a> <time title="{{ comment.created|title }}" datetime="{{ comment.created|datetime }}"><em> {{ comment.created|ago }} </em></time> on <a href="../post/{{ comment.postHashId }}">{{ comment.postTitle }}</a>
</div>
</div>
{% endfor %}
</div>
{% endblock %}
|