2020-06-07 19:04:43 +03:00
|
|
|
{var author = $comment->getOwner()}
|
2021-12-04 22:46:26 +03:00
|
|
|
{var $Club = openvk\Web\Models\Entities\Club::class}
|
2021-12-17 22:30:39 +03:00
|
|
|
{var postId = $comment->getTarget() instanceof \openvk\Web\Models\Entities\Post ? $comment->getTarget()->getId() : NULL}
|
2020-06-07 19:04:43 +03:00
|
|
|
|
|
|
|
<a name="cid={$comment->getId()}"></a>
|
2021-12-17 22:30:39 +03:00
|
|
|
<table border="0" style="font-size: 11px;" class="post comment" id="_comment{$comment->getId()}" data-comment-id="{$comment->getId()}" data-owner-id="{$author->getId()}" data-from-group="{$comment->getOwner() instanceof $Club}" n:attr="data-post-id => $postId">
|
2020-06-07 19:04:43 +03:00
|
|
|
<tbody>
|
|
|
|
<tr>
|
2021-11-28 14:39:42 +03:00
|
|
|
<td width="30" valign="top">
|
2022-02-05 20:24:46 +03:00
|
|
|
<a href="{$author->getURL()}">
|
|
|
|
<img
|
|
|
|
src="{$author->getAvatarURL()}"
|
|
|
|
width="30"
|
|
|
|
class="cCompactAvatars" />
|
|
|
|
</a>
|
2020-06-07 19:04:43 +03:00
|
|
|
</td>
|
2021-11-30 18:34:07 +03:00
|
|
|
<td width="100%" valign="top">
|
2020-06-07 19:04:43 +03:00
|
|
|
<div class="post-author">
|
|
|
|
<a href="{$author->getURL()}"><b>
|
|
|
|
{$author->getCanonicalName()}
|
2022-01-08 17:01:29 +03:00
|
|
|
</b></a>
|
|
|
|
{if $author->isVerified()}<img class="name-checkmark" src="/assets/packages/static/openvk/img/checkmark.png">{/if}<br/>
|
2020-06-07 19:04:43 +03:00
|
|
|
</div>
|
|
|
|
<div class="post-content" id="{$comment->getId()}">
|
|
|
|
<div class="text" id="text{$comment->getId()}">
|
|
|
|
{$comment->getText()|noescape}
|
2021-10-12 14:17:21 +03:00
|
|
|
|
|
|
|
<div n:ifcontent class="attachments_b">
|
|
|
|
<div class="attachment" n:foreach="$comment->getChildren() as $attachment" data-localized-nsfw-text="{_nsfw_warning}">
|
|
|
|
{include "attachment.xml", attachment => $attachment}
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-06-07 19:04:43 +03:00
|
|
|
</div>
|
|
|
|
<div n:if="isset($thisUser) &&! ($compact ?? false)" class="post-menu">
|
2021-11-28 14:39:42 +03:00
|
|
|
<a href="#_comment{$comment->getId()}" class="date">{$comment->getPublicationTime()}</a> |
|
2021-12-12 22:47:39 +03:00
|
|
|
{if $comment->canBeDeletedBy($thisUser)}
|
2021-11-28 14:39:42 +03:00
|
|
|
<a href="/comment{$comment->getId()}/delete">{_"delete"}</a> |
|
2020-06-07 19:04:43 +03:00
|
|
|
{/if}
|
2021-12-18 18:08:33 +03:00
|
|
|
<a class="comment-reply">{_"reply"}</a>
|
2020-06-07 19:04:43 +03:00
|
|
|
<div style="float: right; font-size: .7rem;">
|
2021-11-28 14:39:42 +03:00
|
|
|
<a class="post-like-button" href="/comment{$comment->getId()}/like?hash={rawurlencode($csrfToken)}">
|
2021-01-17 01:29:21 +03:00
|
|
|
<div class="heart" style="{if $comment->hasLikeFrom($thisUser)}opacity: 1;{else}opacity: 0.4;{/if}"></div>
|
2021-11-30 18:34:07 +03:00
|
|
|
<span class="likeCnt">{if $comment->getLikesCount() > 0}{$comment->getLikesCount()}{/if}</span>
|
2020-06-07 19:04:43 +03:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|