{if $unconfirmed_orders == 1}
{__ text="Niepotwierdzone zamówienia"}
| {__ text="Numer"} |
{__ text="Data złożenia"} |
{__ text="Status"} |
{__ text="Kwota"} |
{__ text="Opłacone"} |
{__ text="Potwierdzone"} |
{__ text="Faktury"} |
{foreach key=row item=order from=$results}
{if $order.is_confirmed_orders == 0}
| {$order.number} |
{$order.created_at} |
{$order.status} |
{$order.total_amount} |
{$order.is_paid} |
{$order.is_confirmed} |
{$order.invoice} |
{/if}
{/foreach}
{/if}
{if $confirmed_orders == 1}
{__ text="Potwierdzone zamówienia"}
| {__ text="Numer"} |
{__ text="Data złożenia"} |
{__ text="Status"} |
{__ text="Kwota"} |
{__ text="Opłacone"} |
{__ text="Potwierdzone"} |
{__ text="Faktury"} |
{foreach key=row item=order from=$results}
{if $order.is_confirmed_orders == 1}
| {$order.number} |
{$order.created_at} |
{$order.status} |
{$order.total_amount} |
{$order.is_paid} |
{$order.is_confirmed} |
{$order.invoice} |
{/if}
{/foreach}
{/if}