38 lines
951 B
HTML
38 lines
951 B
HTML
|
{include file=$header}
|
||
|
<button class="btn btn-outline-success" type="button" data-link="/pril10_edit/" title="Создать ведомость"><i class="fa fa-plus" aria-hidden="true"></i></button>
|
||
|
|
||
|
<table class="table">
|
||
|
|
||
|
|
||
|
<tr><td><b>Дата</b></td><td><b>Филиал</b></td><td></td></tr>
|
||
|
|
||
|
{section name=customer loop=$res}
|
||
|
{if $res[customer].id}
|
||
|
|
||
|
<tr id="tr_{$res[customer].id}"><td><a href="/pril10_ocen/{$res[customer].id}">{$res[customer].dat}</a></td><td>{$res[customer].filial}</td><td>
|
||
|
|
||
|
|
||
|
<div class="btn-group">
|
||
|
{if $smarty.session.dostup='a'}
|
||
|
<button type="button" class="btn btn-outline-success"><i class="fa fa-trash" aria-hidden="true"></i>
|
||
|
</button>
|
||
|
{/if}
|
||
|
<button type="button" class="btn btn-outline-success" data-link="/pril10_ocen_print/{$res[customer].id}"><i class="fa fa-print" aria-hidden="true"></i>
|
||
|
</button>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</td></tr>
|
||
|
|
||
|
|
||
|
|
||
|
{/if}
|
||
|
{/section}
|
||
|
|
||
|
|
||
|
|
||
|
</table>
|
||
|
|
||
|
|
||
|
|
||
|
{include file=$footer}
|