16 <table width=
"100%" cellspacing=
"0" cellpadding=
"0" class=
"items">
24 <th
class=
"item_quantity"><?php echo
Item::model()->getAttributeLabel(
'quantity'); ?></th>
25 <th
class=
"item_title"><?php echo
Item::model()->getAttributeLabel(
'title'); ?></th>
26 <th
class=
"item_price"><?php echo
Item::model()->getAttributeLabel(
'price'); ?></th>
31 foreach($items as $i=>$item):
32 $sum += $item->price * $item->quantity;
35 <td
class=
"item_quantity"><?php echo $item->quantity ?></td>
36 <td
class=
"item_title"><?php echo $item->title; ?></td>
43 <td
class=
"item_sum"><?php echo
Item::addCurrency($sum + Yii::app()->getModule(
'shoppingcart')->shipping_costs); ?></td>