%! from django.utils.translation import ugettext as _ %> <%! from django.core.urlresolvers import reverse %> <%inherit file="../main.html" /> <%block name="title">
${_("Quantity")} | ${_("Description")} | ${_("Unit Price")} | ${_("Price")} | ${_("Currency")} | |
---|---|---|---|---|---|
${item.qty} | ${item.line_desc} | ${"{0:0.2f}".format(item.unit_cost)} | ${"{0:0.2f}".format(item.line_cost)} | ${item.currency.upper()} | [x] |
${_("Total Amount")} | |||||
${"{0:0.2f}".format(amount)} |
${_("You have selected no items for purchase.")}
% endif