Галочки в поиске и списках групп и друзей (#659)

#619
This commit is contained in:
n1rwana 2022-08-18 22:13:04 +03:00 committed by GitHub
parent d02cef93ee
commit ecea2a6fa4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 1 deletions

View file

@ -56,6 +56,10 @@
{block name} {block name}
<text style="overflow: hidden;">&nbsp;{$x->getCanonicalName()}</text> <text style="overflow: hidden;">&nbsp;{$x->getCanonicalName()}</text>
<img n:if="$x->isVerified()"
class="name-checkmark"
src="/assets/packages/static/openvk/img/checkmark.png"
/>
{/block} {/block}
{block description} {block description}

View file

@ -102,6 +102,10 @@
{block name} {block name}
{$x->getCanonicalName()} {$x->getCanonicalName()}
<img n:if="$x->isVerified()"
class="name-checkmark"
src="/assets/packages/static/openvk/img/checkmark.png"
/>
{/block} {/block}
{block description} {block description}

View file

@ -58,7 +58,13 @@
<tbody> <tbody>
<tr> <tr>
<td class="label"><span class="nobold">{_name}: </span></td> <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>
<tr> <tr>
<td class="label"><span class="nobold">{_size}:</span></td> <td class="label"><span class="nobold">{_size}:</span></td>