mirror of
https://github.com/openvk/openvk
synced 2025-02-09 00:09:33 +03:00
This commit makes the search workable, fixes the length of the search button, translates the placeholder and returns the number of results
84 lines
2.4 KiB
XML
84 lines
2.4 KiB
XML
{extends "../@listView.xml"}
|
|
|
|
{block title}
|
|
{if $type === "users"}
|
|
{tr("search_for_people")}
|
|
{else}
|
|
{tr("search_for_groups")}
|
|
{/if}
|
|
{/block}
|
|
|
|
{block header}
|
|
{=OPENVK_ROOT_CONF["openvk"]["appearance"]["name"]} »
|
|
{if $type === "users"}
|
|
{tr("search_for_people")}
|
|
{else}
|
|
{tr("search_for_groups")}
|
|
{/if}
|
|
{/block}
|
|
|
|
{* BEGIN ELEMENTS DESCRIPTION *}
|
|
|
|
{block tabs}
|
|
<div {if $type === "users"}id="activetabs"{/if} class="tab">
|
|
<a {if $type === "users"}id="act_tab_a"{/if} href="/search?type=users">
|
|
{_users}
|
|
</a>
|
|
</div>
|
|
<div {if $type === "groups"}id="activetabs"{/if} class="tab">
|
|
<a {if $type === "groups"}id="act_tab_a"{/if} href="/search?type=groups">
|
|
{_groups}
|
|
</a>
|
|
</div>
|
|
|
|
<form class="header_search_inputbt">
|
|
<input name="type" type="hidden" value="{$type ?? 'users'}" />
|
|
<input name="query" class="header_search_input" placeholder="{_search_placeholder}" value="{$_GET['query'] ?? ''}" />
|
|
<button class="button_search">{_search_button}</button>
|
|
</form>
|
|
|
|
<p style="margin-left: 15px; margin-top: 0;">
|
|
<b>{tr("results", $count)}</b>
|
|
</p>
|
|
{/block}
|
|
|
|
{block link|strip|stripHtml}
|
|
{$x->getURL()}
|
|
{/block}
|
|
|
|
{block preview}
|
|
<img src="{$x->getAvatarUrl()}" width="75" alt="{_"photo"}" />
|
|
{/block}
|
|
|
|
{block name}
|
|
<text style="overflow: hidden;"> {$x->getCanonicalName()}</text>
|
|
{/block}
|
|
|
|
{block description}
|
|
<table class="ugc-table">
|
|
<tbody>
|
|
{if $type === "users"}
|
|
<tr>
|
|
<td><span class="nobold">{_"gender"}: </span></td>
|
|
<td>{$x->isFemale() ? tr("female") : tr("male")}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><span class="nobold">{_"relationship"}:</span></td>
|
|
<td>{var $marialStatus = $x->getMaritalStatus()}{_"relationship_$marialStatus"}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><span class="nobold">{_"registration_date"}: </span></td>
|
|
<td>{$x->getRegistrationTime()}</td>
|
|
</tr>
|
|
{/if}
|
|
<tr>
|
|
<td>
|
|
<span class="nobold">{_"description"}:</span>
|
|
</td>
|
|
<td>
|
|
{$x->getDescription() ?? '(' . tr("none") . ')'}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
{/block}
|