mirror of
https://github.com/openvk/openvk
synced 2024-11-13 10:39:24 +03:00
parent
d02cef93ee
commit
ecea2a6fa4
3 changed files with 15 additions and 1 deletions
|
@ -56,6 +56,10 @@
|
|||
|
||||
{block name}
|
||||
<text style="overflow: hidden;"> {$x->getCanonicalName()}</text>
|
||||
<img n:if="$x->isVerified()"
|
||||
class="name-checkmark"
|
||||
src="/assets/packages/static/openvk/img/checkmark.png"
|
||||
/>
|
||||
{/block}
|
||||
|
||||
{block description}
|
||||
|
|
|
@ -102,6 +102,10 @@
|
|||
|
||||
{block name}
|
||||
{$x->getCanonicalName()}
|
||||
<img n:if="$x->isVerified()"
|
||||
class="name-checkmark"
|
||||
src="/assets/packages/static/openvk/img/checkmark.png"
|
||||
/>
|
||||
{/block}
|
||||
|
||||
{block description}
|
||||
|
|
|
@ -58,7 +58,13 @@
|
|||
<tbody>
|
||||
<tr>
|
||||
<td class="label"><span class="nobold">{_name}: </span></td>
|
||||
<td class="data"><a href="{$x->getURL()}">{$x->getName()}</a></td>
|
||||
<td class="data">
|
||||
<a href="{$x->getURL()}">{$x->getName()}</a>
|
||||
<img n:if="$x->isVerified()"
|
||||
class="name-checkmark"
|
||||
src="/assets/packages/static/openvk/img/checkmark.png"
|
||||
/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="label"><span class="nobold">{_size}:</span></td>
|
||||
|
|
Loading…
Reference in a new issue