virt2/api/mod/zap-vyplat.html

72 lines
2.3 KiB
HTML
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{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>{$balans} руб.</b>
</div>
<form action="/act/zap-vyplat" method="post" id="anyform" class="col-xs col-sm col-md col-lg-6 col-xl-6" style="margin: 0 auto;">
<div class="form-group">
<label for="exampleInputEmail1">Сумма:</label>
<input type="text" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="" name="summa">
<small id="emailHelp" class="form-text text-muted"></small>
</div>
<div class="form-group">
<label for="exampleInputEmail1">Кошелек:</label>
<select class="form-control" id="exampleFormControlSelect1" name="val">
<option value="yad">Яндекс-деньги</option>
<option value="qiwi">Qiwi</option>
</select>
<small id="emailHelp" class="form-text text-muted">Обработка запроса на выплату не более 24-х часов, но мы стараемся переводить средства максимальо оперативно</small>
</div>
<input type="hidden" value="get-money" name="act">
<input type="submit" class="btn btn-block btn-lg btn-primary" value="Создать запрос" name="ok">
<br>
<div id="div_res"></div>
</form>
<!-- История -->
<h2>История выплат</h2>
<table class="table">
<tr>
<td><b>Дата</b></td>
<td><b>Сумма</b></td>
<td><b>Статус</b></td>
</tr>
{section name=customer loop=$list}
{if $list[customer].id}
<tr>
<td>
{$list[customer].t|date_format:"%H:%M:%S %d.%m.%Y"}
</td>
<td>
{$list[customer].summa}
</td>
<td>
{if ($list[customer].status==1)}Выплачено{else}Обрабатывается{/if}
</td>
</tr>
{/if}
{/section}
</table>
{include file=$footer}