[%# $Id: cart_fetch.tt2 276 2005-03-02 02:24:49Z claco $ %]
[% USE hcart  = Handel.Cart %]
<body>
    [% FOREACH cart = hcart.fetch %]
		<cart>
			<count>[% cart.count %]</count>
			<description>[% cart.description %]</description>
			<id>[% cart.id %]</id>
			<name>[% cart.name %]</name>
			<shopper>[% cart.shopper %]</shopper>
			<subtotal>[% cart.subtotal %]</subtotal>
			<type>[% cart.type %]</type>
		</cart>
    [% END %]
</body>