2022-08-28 21:22:11 +03:00
|
|
|
{var $author = $change->getAuthor()}
|
|
|
|
|
|
|
|
<table border="0" style="font-size: 11px;">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td width="54" valign="top">
|
|
|
|
<a href="{$author->getURL()}">
|
|
|
|
<img src="{$author->getAvatarURL('miniscule')}" width="50" />
|
|
|
|
<span n:if="!$post->isPostedOnBehalfOfGroup() && !($compact ?? false) && $author->isOnline()" class="post-online">{_online}</span>
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
<td width="100%" valign="top">
|
|
|
|
<div class="post-author">
|
|
|
|
<a href="{$author->getURL()}"><b>
|
|
|
|
{$author->getCanonicalName()}
|
|
|
|
</b></a>
|
|
|
|
<img n:if="$author->isVerified()" class="name-checkmark" src="/assets/packages/static/openvk/img/checkmark.png"><br/>
|
|
|
|
</div>
|
|
|
|
<div class="post-content" id="{$change->getId()}">
|
|
|
|
<div class="text" id="text{$change->getId()}">
|
|
|
|
{$change->getNewContent()|noescape}
|
|
|
|
</div>
|
2022-09-06 19:58:53 +03:00
|
|
|
<span class="nobold">
|
|
|
|
{$change->getCreationDate()}
|
|
|
|
</span>
|
|
|
|
<a n:if="$change->canBeApplied()" href="/wall{$post->getPrettyId()}/history/restore{$change->getId()}">
|
|
|
|
| Применить
|
|
|
|
</a>
|
2022-08-28 21:22:11 +03:00
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
2022-09-06 19:58:53 +03:00
|
|
|
</table>
|