{foreach name=blah item=item from=$items}
| Produkt: {$item.products_name} (pID: {$item.products_id}) |
{if $item.fees != ''}
| Name |
Gebühr |
{foreach name=blah item=fee from=$item.fees}
{if $fee.fee > 0}
{if $fee.name == 'ListingFee'}
{assign var='total' value=$fee.fee}
{else}
| {$fee.name} |
{$fee.fee|string_format:"%.2f"} |
{/if}
{/if}
{/foreach}
| Gesamt Auktion |
{$total|string_format:"%.2f"} |
{/if}
|
{if $item.errors}
Fehler: {$item.errors} |
{/if}
{/foreach}
{if $feetotal > 0}
| Gebühren Gesamt: {$feetotal|string_format:"%.2f"} |
{/if}