/home/smartonegroup/public_html/veroserv/ui/theme/default/payments.tpl
{extends file="$layouts_admin"}
{block name="head"}

    <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/buttons/1.6.2/css/buttons.dataTables.min.css" />

{/block}
{block name="content"}

    <div class="row">
        <div class="col-lg-12 col-md-12 col-sm-12">
            <div class="panel">
                <div class="panel-hdr">
                    <h2>{$_L['Payments']}</h2>

                </div>

                <div class="panel-container">
                    <div class="panel-content">
                        <div class="table-responsive">

                            <table class="table table-striped" id="clx_datatable">
                                <thead style="background: #f0f2ff">
                                <tr>
                                    <th>{$_L['Invoice']}#</th>
                                    <th>{$_L['Date']}</th>
                                    <th>{$_L['Account']}</th>


                                    <th class="text-end">{$_L['Amount']}</th>

                                    <th>{$_L['Transaction ID']}</th>

                                    <th class="text-end">{$_L['Cr']}</th>
                                    <th>{$_L['Manage']}</th>
                                </tr>

                                </thead>

                                {foreach $d as $ds}
                                    <tr class="{if $ds['cr'] eq '0.00'}warning {else}info{/if}">
                                        <td>{$ds['iid']}</td>
                                        <td>{date( $config['df'], strtotime($ds['date']))}</td>
                                        <td class="h6">{$ds['account']}</td>
                                        <td class="text-end amount text-info">{$ds['amount']}</td>
                                        <td>{$ds['description']}</td>
                                        <td class="text-end amount">{$ds['cr']}</td>
                                        <td><a href="{$_url}transactions/manage/{$ds['id']}">{$_L['Manage']}</a></td>
                                    </tr>
                                {/foreach}


                            </table>
                        </div>


                    </div>
                </div>

            </div>

        </div>

    </div>
{/block}

{block name="script"}
    <script>
        $(function () {
            $('#clx_datatable').dataTable(
                {
                    responsive: true,
                    "language": {
                        "emptyTable": "{$_L['No items to display']}",
                        "info":      "{$_L['Showing _START_ to _END_ of _TOTAL_ entries']}",
                        "infoEmpty":      "{$_L['Showing 0 to 0 of 0 entries']}",
                        buttons: {
                            pageLength: '{$_L['Show all']}'
                        },
                        searchPlaceholder: "{__('Search')}"
                    },
                }
            );
        });
    </script>
{/block}