blob: 37a5a7b89b77ac5fbc3310acd22217f2015bbbfa [file] [log] [blame]
<?xml version="1.0"?>
<page xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
<site signOn="#{accountForm/signOn}" view="jxpath">
<cart name="#{label}" >
<backpointer name="Main Menu" do="index.do" />
<c:forEach select="#{cartItems}">
<item productId="#{item/productId}" id="#{item/itemId}">
<desc>#{item/attr1} #{item/attr2} #{item/attr3} #{item/attr4} #{item/attr5} #{item/product/name}</desc>
<quantity>#{quantity}</quantity>
<listPrice>#{item/listPrice}</listPrice>
<total>#{total}</total>
</item>
</c:forEach>
<subTotal label="Sub Total" label1="Total">#{cartForm/cart/subTotal}</subTotal>
<c:if test="#{label = 'Checkout Summary'}">
<nextpointer img="images/button_continue.gif" do="#{$cocoon/continuation/id}.kont"/>
</c:if>
<c:if test="#{label = 'Shopping Cart'}">
<nextpointer do="checkout.do" img="images/button_checkout.gif" />
</c:if>
</cart>
</site>
</page>