Files
crm.twinpol.com/modules/EcmTransactions/tpls/importBankStatement/afterSave.tpl
2025-05-12 15:46:37 +00:00

38 lines
1.1 KiB
Smarty
Executable File

<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>&nbsp;</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">&nbsp;
{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>