38 lines
1.1 KiB
Smarty
38 lines
1.1 KiB
Smarty
|
|
<style>
|
||
|
|
{literal}
|
||
|
|
.text-left {
|
||
|
|
text-align: left;
|
||
|
|
}
|
||
|
|
.text-right {
|
||
|
|
text-align: right !important;
|
||
|
|
}
|
||
|
|
.account_name {
|
||
|
|
background:rgba(0,0,0,0);
|
||
|
|
border:none;
|
||
|
|
text-color: black;
|
||
|
|
}
|
||
|
|
{/literal}
|
||
|
|
</style>
|
||
|
|
<h3>Podsumowanie zapisu transakcji</h3>
|
||
|
|
<table class="list view" style="width: 30%;" width="30%" cellspacing="0" cellpadding="0" border="0">
|
||
|
|
<thead>
|
||
|
|
<tr>
|
||
|
|
<th class="text-left" style="width: 75%;">Nazwa</th>
|
||
|
|
<th class="text-right">Kwota</th>
|
||
|
|
<th> </th>
|
||
|
|
</tr>
|
||
|
|
<thead>
|
||
|
|
<tbody>
|
||
|
|
{foreach from=$DATA item=row key=k}
|
||
|
|
<tr class="evenListRowS1">
|
||
|
|
<td class="text-left"><a href="index.php?module=EcmTransactions&action=DetailView&record={$row.id}" target="_blank">{$row.name}</a></td>
|
||
|
|
<td class="text-right">{$row.value}</td>
|
||
|
|
<td class="text-right">
|
||
|
|
{if $row.account_id!=""}
|
||
|
|
<a href="index.php?module=EcmPaymentStates&action=AccountPaymentStates&account_id={$row.account_id}" target="_blank">Przejdź do rozrachunków ({$row.account_name})</a>
|
||
|
|
{/if}
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
{/foreach}
|
||
|
|
</tbody>
|
||
|
|
</table>
|