50 lines
1.1 KiB
HTML
Executable File
50 lines
1.1 KiB
HTML
Executable File
{include file=$header h1="Мои партнеры" title="Мои партнеры"}
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item"><a href="/">Главная страница</a></li>
|
|
<li class="breadcrumb-item"><a href="/cabinet/">Кабинет</a></li>
|
|
<li class="breadcrumb-item active" aria-current="page">Мои партнеры</li>
|
|
</ol>
|
|
</nav>
|
|
|
|
<div class="alert alert-success" role="alert">
|
|
Ваша реферальная ссылка: <b>https://THIS-SITE/ref/{$smarty.session.user_id}</b>
|
|
</div>
|
|
<h2>Ваши партнеры</h2>
|
|
|
|
|
|
|
|
<table class="table">
|
|
<tr>
|
|
<td><b>Дата</b></td>
|
|
<td><b>Логин или E-mail</b></td>
|
|
<td><b>Баланс пользователя</b></td>
|
|
</tr>
|
|
{section name=customer loop=$list}
|
|
{if $list[customer].id}
|
|
<tr>
|
|
<td>
|
|
{$list[customer].regdata|date_format:"%H:%M:%S %d.%m.%Y"}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
{if ($list[customer].login)}
|
|
{$list[customer].login}
|
|
{else}
|
|
{$list[customer].email}
|
|
{/if}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{$list[customer].balans}
|
|
</td>
|
|
</tr>
|
|
{/if}
|
|
{/section}
|
|
</table>
|
|
|
|
|
|
{include file=$footer} |