<div class="dashboard-box margin-top-0">
<div class="headline">
<h3>
<i class="icon-feather-list"></i>
Recent reply <span class="forum-none">on the forum</span>
</h3>
</div>
<div class="content" style="padding-top: 20px;padding-bottom: 1px;">
<ul style="list-style-type:none;padding-left: 20px;">
{% set _total_recentPostReplys = _recentPostReplys|length %}
{% for _recentPostReply in _recentPostReplys %}
<li class="actu text-black "
style="display: flex;align-items: center;" >
<span class="forum_avatar ripple-effect-dark"
title="{{ _recentPostReply.forumUser.alias }}"
>
{{ _recentPostReply.forumUser.avatarSpanName }}
</span>
{% set lastComment = _recentPostReply.lastComment %}
{% if lastComment %}
{{ lastComment.createdAt|date('d/m') }}
{% else %}
{{ _recentPostReply.createdAt|date('d/m') }}
{% endif %}
-
<a class="news-link text-black" href="{{ path('app_forum_forum_post_show',{
'country' : _recentPostReply.topic.countryMin,
'topicslug' : _recentPostReply.topic.slug,
'slug' : _recentPostReply.slug
}) }}">
<b>{{ _recentPostReply.title|u.truncate(20, '...') }}</b>
</a>
</li>
{% if loop.index != _total_recentPostReplys %}
<div class="margin-top-5 margin-bottom-5" style="border-bottom: 0.1rem solid #e4e4e4; width: 60%"></div>
{% endif %}
{% endfor %}
</ul>
</div>
</div>