<%! from django.utils.translation import ugettext as _ %> <%! from django.core.urlresolvers import reverse %> <%inherit file="../main.html" /> <%block name="pagetitle">${_("Your Shopping Cart")}

${_("Your selected items:")}

Error goes here.

% if shoppingcart_items: % for item in shoppingcart_items: % endfor
${_("Description")} ${_("Price")} ${_("Currency")}  
${item.line_desc} ${"{0:0.2f}".format(item.unit_cost)} % if item.list_price != None: ${"{0:0.2f}".format(item.list_price)} % endif ${item.currency.upper()} [x]
${_("Total Amount")}: ${"{0:0.2f}".format(amount)}
% if amount == 0: % else: ${form_html} %endif
% else:

${_("You have selected no items for purchase.")}

% endif