{assign var=title value="Lookup Results"}
{include file="admin/header.inc.html"}
{$title}
{if $smarty.request.q eq ''}
Your query was empty.
{else}
Found {php}echo count($this->get_template_vars('ur'));{/php} members matching the search string (it will show only first 20 records anyway)
{if $ur}
Username |
Name |
E-Mail |
{foreach from=$ur item=u}
{$u.login} |
{$u.name_f|escape} {$u.name_l|escape} |
<{$u.email|escape}> |
{/foreach}
{/if}
Found {php}echo count($this->get_template_vars('pr'));{/php} payments/invoices matching the search string (it will show only first 20 records anyway)
{if $pr}
Username |
Name |
E-Mail |
Payment |
Receipt |
Rayment System |
{foreach from=$pr item=u}
{$u.login|escape} |
{$u.name_f|escape} {$u.name_l|escape} |
<{$u.email|escape}> |
{$u.payment_id} |
{$u.receipt_id|escape} |
{$u.paysys_id|escape} |
{/foreach}
{/if}
{/if}{* if $q == "" *}
{include file="admin/footer.inc.html"}