{% extends "partials/layout.html" %} {% block pageContent %}

{{ "Accounts" | tr }}

{{ "Comments for %s%s%s" | tr | format('' | format(username), username, "") | safe }}

{% for comment in comments %} {% set commented_at = comment.CommentTS | dt | as_timezone(timezone) %}

{{ "Commented on package %s%s%s on %s%s%s" | tr | format( '', comment.PackageBase.Name, "", '' | format( username, comment.ID ), commented_at.strftime("%Y-%m-%d %H:%M"), "" ) | safe }}

{% if comment.RenderedComment %} {{ comment.RenderedComment | safe }} {% else %} {{ comment.Comments }} {% endif %}
{% endfor %}
{% endblock %}