mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
31 lines
868 B
HTML
31 lines
868 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>
|
|
|
|
<!-- On-the-fly comment editing functions -->
|
|
<script type="text/javascript" src="/static/js/comment-edit.js"></script>
|
|
|
|
{% for comment in comments %}
|
|
{% include "partials/account/comment.html" %}
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|