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>
30 foreach($items as $i=>$item):
34 <td
class=
"item_quantity"><?php echo $item->quantity ?></td>
35 <td
class=
"item_title"><?php echo $item->title; ?></td>
40 <tr><td colspan=
"4"><hr /></td></tr>
45 <?php
foreach($user->attributes as $fieldName => $field):
46 if(substr($fieldName,-2) ==
'id' || empty($field))
continue; ?>
48 <td
class=
"label"><?php echo $user->getAttributeLabel($fieldName); ?></td>
49 <td
class=
"value"><?php echo $field; ?></td>