44 lines
1.3 KiB
HTML
44 lines
1.3 KiB
HTML
<h4 align="center">Итоговая ведомость</h3>
|
||
|
||
{if isset($user.statuses[41])}
|
||
<div class="widget-body">
|
||
<table class="table table-striped table-bordered table-advance table-hover">
|
||
<thead>
|
||
<tr>
|
||
<th>№</th>
|
||
<th>Дата</th>
|
||
<th>ФИО</th>
|
||
<th>Тип</th>
|
||
<th>Сумма</th>
|
||
<th>Доп. информация</th>
|
||
<th>Файлы</th>
|
||
<th>Статус</th>
|
||
<th>Операции</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
{foreach from=$zayavks item=it}
|
||
<tr>
|
||
<td>{$it.id}</td>
|
||
<td>{$it.data_cr}</td>
|
||
<td>{$it.fio}</td>
|
||
<td>{$it.type}</td>
|
||
<td>{$it.summa} руб.</td>
|
||
<td>{$it.phone}{if $it.dop_info != '|'}{$it.dop_info}{/if}<br />
|
||
<b>Группа:</b> {foreach from=$student.grupps item=gp}{if $gp.active==1} {$gp.sokr}-{$gp.kurs} {$gp.fo}{/if}{/foreach}</td>
|
||
<td>{$it.files}</td>
|
||
<td nowrap class="mhelp_status">
|
||
{$it.status}
|
||
</td>
|
||
<td>
|
||
<a href="/tpl/tpl_mhelp_print.html?z={$it.id}" class="btn btn-primary print_total" data-id="{$it.id}">Печать</a><br />
|
||
<input type="hidden" class="num_eks" name="eks" value="{$num_eks}" />
|
||
</td>
|
||
</tr>
|
||
{/foreach}
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
{else}
|
||
<p align="center" style="margin-top: calc(40vh);">У Вас нет доступа!</p>
|
||
{/if} |