[%# $Id$ %]
[% USE hcart  = Handel.Cart %]
<body>
    [% IF (carts = hcart.search) %]
    	[% WHILE (cart = carts.next) %]
			<cart>
				<count>[% cart.count %]</count>
				<description>[% cart.description %]</description>
				<id>[% cart.id %]</id>
				<name>[% cart.name %]</name>
				<shopper>[% cart.shopper %]</shopper>
				<subtotal>[% cart.subtotal.value %]</subtotal>
				<type>[% cart.type %]</type>
			</cart>
		[% END %]
	[% ELSE %]
		<message>Error loading carts</message>
    [% END %]
</body>