2023-02-20 17:15:13 -06: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-26 20:37:35 -05:00
|
|
|
{% with author_id=comment.author_id %}
|
|
|
|
{% if author_id %}
|
2023-02-20 17:15:13 -06:00
|
|
|
<div class="problem-feed-info-entry">
|
2024-06-04 22:00:23 -05:00
|
|
|
<i class="far fa-pen-to-square"></i>
|
2024-04-26 20:37:35 -05:00
|
|
|
<span class="pi-value">{{ link_user(author_id) }}</span>
|
2023-02-20 17:15:13 -06: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-07 00:26:04 +07:00
|
|
|
</div>
|
2023-02-20 17:15:13 -06:00
|
|
|
{% endfor %}
|
|
|
|
{% include "feed/has_next.html" %}
|