2020-06-07 19:04:43 +03:00
|
|
|
{var author = $comment->getOwner()}
|
|
|
|
|
|
|
|
<a name="cid={$comment->getId()}"></a>
|
2021-11-28 14:39:42 +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()}">
|
2020-06-07 19:04:43 +03:00
|
|
|
<tbody>
|
|
|
|
<tr>
|
2021-11-28 14:39:42 +03:00
|
|
|
<td width="30" valign="top">
|
2020-06-07 19:04:43 +03:00
|
|
|
<img
|
|
|
|
src="{$author->getAvatarURL()}"
|
2021-11-28 14:53:33 +03:00
|
|
|
width="30"
|
|
|
|
class="cCompactAvatars" />
|
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()}
|
2021-11-28 14:39:42 +03:00
|
|
|
</b></a><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> |
|
2020-06-07 19:04:43 +03:00
|
|
|
{var canDelete = $comment->getOwner()->getId() == $thisUser->getId()}
|
|
|
|
{var canDelete = $canDelete || $comment->getTarget()->getOwner()->getId() == $thisUser->getId()}
|
|
|
|
{if $canDelete}
|
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-10-12 14:18:07 +03:00
|
|
|
<a class="comment-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>
|