{if $display_mode == "manage_wishlist" && $wish_lists}
Mange your Wish Lists
{elseif $display_mode == "edit_wishlist"}
{$wishlist_data.name}
{elseif $display_mode == "add_wishlist"}
Add a new Wish List
{else}
{$msg.wishlist.pageHeader}
{/if}
{*** WISH LIST DISPLAY PAGE - LISTS ALL WISH LISTS ***}
{if $display_mode == "manage_wishlist" && $wish_lists}
Your wish lists are below. To add a new wish list, please click here.
{assign var="productCount" value=0}
{foreach from=$wish_lists item="wish_lt"}
{/foreach}
{ *** END WISH LIST DISPLAY ***}
{ *** WISH LIST DETAIL PAGE ***}
{elseif $display_mode == "edit_wishlist"}
{if $wishlist_data}
{*{$wishlist_data.name}
*}
{if $wishlist_data.wishlist_products}
{assign var="productCount" value=0}
{foreach from=$wishlist_data.wishlist_products item="product"}
{$product.price|price}
{if $product.out_of_stock == "No" || !$product.out_of_stock}
{$msg.wishlist.addToCart}
{elseif $product.out_of_stock == "Yes"}
{$msg.catalog.out_of_stock}
{/if}
{assign var="productCount" value=$productCount+1}
{/foreach}
{else}You don't have any products in this wish list yet. You can use the 'Add to Wishlist' buttons on the product detail page to add them.
Manage Your Wish Lists
{/if}
{/if}
{elseif $display_mode == "send_email_form"}