[% USE HTML %]

[% HTML.escape(user.username) %]

[% INCLUDE 'includes/users/menu/' %] [% page.id = 'page-users-wishlist' %] [% IF NOT wishlist %] [% page.title = c.localize('WISHLIST_NOT_FOUND') %] [% ELSE %] [% page.title = wishlist.name %]

[% HTML.escape(wishlist.name) %]

[% IF wishlist.count %] [% FOREACH item = wishlist.items %] [% END %]
SKU Description Quantity Unit Price Total
[% HTML.escape(item.sku) %] [% HTML.escape(item.description) %] [% HTML.escape(item.quantity) %] [% HTML.escape(item.price.as_string('FMT_SYMBOL')) %] [% HTML.escape(item.total.as_string('FMT_SYMBOL')) %] [% SET form = c.forms('cart_delete') %] [% CALL form.id(form.id _ '_' _ item.id) %] [% form.render('values', [item.id, item.quantity]) %]
[% ELSE %]

This wishlist is empty.

[% END %] [% END %]