aurweb/templates/account/comments.html
Kevin Morris 8dcdc7ff38
change(fastapi): decouple account comment templates
Signed-off-by: Kevin Morris <kevr@0cost.org>
2021-10-29 18:28:14 -07:00

28 lines
723 B
HTML

{% extends "partials/layout.html" %}
{% block pageContent %}
<div class="box">
<h2>{{ "Accounts" | tr }}</h2>
<div class="comments">
<div class="comments-header">
<h3>
{{
"Comments for %s%s%s" | tr
| format('<a href="/account/%s">' | format(username),
username,
"</a>")
| safe
}}
</h3>
</div>
{% for comment in comments %}
{% include "partials/account/comment.html" %}
{% endfor %}
</div>
</div>
{% endblock %}