2021-10-07 11:48:55 +03:00
|
|
|
{extends "../@listView.xml"}
|
|
|
|
|
|
|
|
{block title}
|
2021-10-07 23:09:14 +03:00
|
|
|
{tr("users_gifts", $user->getFirstName())}
|
2021-10-07 11:48:55 +03:00
|
|
|
{/block}
|
|
|
|
|
|
|
|
{block header}
|
|
|
|
<a href="{$user->getURL()}">{$user->getCanonicalName()}</a> »
|
2021-10-07 23:09:14 +03:00
|
|
|
{_gifts}
|
2021-10-07 11:48:55 +03:00
|
|
|
{/block}
|
|
|
|
|
|
|
|
{* BEGIN ELEMENTS DESCRIPTION *}
|
|
|
|
|
|
|
|
{block link|strip|stripHtml}
|
|
|
|
javascript:false
|
|
|
|
{/block}
|
|
|
|
|
|
|
|
{block preview}
|
2021-10-07 23:09:14 +03:00
|
|
|
<img src="{$x->gift->getImage(2)}" width="75" alt="{_gift}" />
|
2021-10-07 11:48:55 +03:00
|
|
|
{/block}
|
|
|
|
|
|
|
|
{block name}
|
2021-10-07 23:09:14 +03:00
|
|
|
{_gift}
|
2021-10-07 11:48:55 +03:00
|
|
|
{/block}
|
|
|
|
|
|
|
|
{block description}
|
|
|
|
<table class="ugc-table" n:if="$hideInfo ? !$x->anon : true">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
2021-10-07 23:09:14 +03:00
|
|
|
<td><span class="nobold">{_sender}: </span></td>
|
2021-10-07 11:48:55 +03:00
|
|
|
<td>
|
|
|
|
<a href="{$x->sender->getURL()}">
|
|
|
|
{$x->sender->getFullName()}
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr n:if="!empty($x->caption)">
|
2021-10-07 23:09:14 +03:00
|
|
|
<td><span class="nobold">{_comment}: </span></td>
|
2021-10-07 11:48:55 +03:00
|
|
|
<td>{$x->caption}</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{/block}
|