2023-02-20 23:15:13 +00:00
|
|
|
{% for comment in comments %}
|
|
|
|
<div class="blog-box">
|
|
|
|
<h3 class="problem-feed-name">
|
|
|
|
<a href="{{ comment.get_absolute_url() }}">
|
|
|
|
{{ comment.page_title }}
|
|
|
|
</a>
|
|
|
|
</h3>
|
2024-04-27 01:37:35 +00:00
|
|
|
{% with author_id=comment.author_id %}
|
|
|
|
{% if author_id %}
|
2023-02-20 23:15:13 +00:00
|
|
|
<div class="problem-feed-info-entry">
|
2024-06-05 03:00:23 +00:00
|
|
|
<i class="far fa-pen-to-square"></i>
|
2024-04-27 01:37:35 +00:00
|
|
|
<span class="pi-value">{{ link_user(author_id) }}</span>
|
2023-02-20 23:15:13 +00:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
|
|
|
<div class='blog-description content-description'>
|
|
|
|
{{ comment.body|markdown(lazy_load=True)|reference|str|safe }}
|
|
|
|
<div class="show-more"> {{_("...More")}} </div>
|
|
|
|
</div>
|
2023-02-06 17:26:04 +00:00
|
|
|
</div>
|
2023-02-20 23:15:13 +00:00
|
|
|
{% endfor %}
|
|
|
|
{% include "feed/has_next.html" %}
|