2022-01-03 02:41:50 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block link %}
|
|
|
|
<a href="{{ url_for('users.profile', username=user.username) }}">{{ user.display_name }}</a>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block title %}
|
2022-01-03 02:44:12 +01:00
|
|
|
{{ _("Comments by %(user)s", user=user.display_name) }}
|
2022-01-03 02:41:50 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2022-01-03 02:44:12 +01:00
|
|
|
<h1>{{ _("Comments by %(user)s", user=self.link()) }}</h1>
|
2022-01-03 02:41:50 +01:00
|
|
|
|
|
|
|
|
|
|
|
<ul class="comments mt-5 mb-0">
|
|
|
|
{% for r in replies %}
|
|
|
|
<li class="row my-2 mx-0">
|
|
|
|
<div class="col-md-1 p-1">
|
|
|
|
<a href="{{ url_for('users.profile', username=r.author.username) }}">
|
2023-08-25 21:49:55 +02:00
|
|
|
<img class="img-fluid user-photo img-thumbnail img-thumbnail-1"
|
|
|
|
src="{{ r.author.get_profile_pic_url() }}" loading="lazy">
|
2022-01-03 02:41:50 +01:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="col pr-0">
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-header">
|
|
|
|
|
2023-08-22 20:58:43 +02:00
|
|
|
<a class="author {{ r.author.rank.name }} me-3"
|
2022-01-03 02:41:50 +01:00
|
|
|
href="{{ url_for('users.profile', username=r.author.username) }}">
|
|
|
|
{{ r.author.display_name }}
|
|
|
|
</a>
|
|
|
|
|
|
|
|
{% if r.author.username != r.author.display_name %}
|
2023-08-22 20:58:43 +02:00
|
|
|
<span class="text-muted small me-2">
|
2022-01-03 02:41:50 +01:00
|
|
|
({{ r.author.username }})
|
|
|
|
</span>
|
|
|
|
{% endif %}
|
|
|
|
|
2022-11-18 22:15:46 +01:00
|
|
|
{% if r == r.thread.first_reply %}
|
2023-08-22 20:58:43 +02:00
|
|
|
<a class="badge bg-primary" href="{{ r.thread.get_view_url() }}">
|
2022-01-03 02:41:50 +01:00
|
|
|
{{ r.thread.title }}
|
|
|
|
</a>
|
|
|
|
{% else %}
|
2023-08-22 20:58:43 +02:00
|
|
|
<i class="fas fa-reply me-2"></i>
|
|
|
|
<a class="badge bg-dark" href="{{ r.thread.get_view_url() }}">
|
2022-01-08 00:27:00 +01:00
|
|
|
{{ _("Reply to <b>%(title)s</b>", title=r.thread.title) }}
|
2022-01-03 02:41:50 +01:00
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
|
2023-08-22 20:58:43 +02:00
|
|
|
<a name="reply-{{ r.id }}" class="text-muted float-end"
|
2022-01-03 02:41:50 +01:00
|
|
|
href="{{ url_for('threads.view', id=r.thread.id) }}#reply-{{ r.id }}">
|
|
|
|
{{ r.created_at | datetime }}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card-body markdown">
|
|
|
|
{{ r.comment | markdown }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
{% endblock %}
|