A Qcodo based CMS/ecommerce framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
515 B

12 years ago
  1. <div class="ProductItemList">
  2. <table>
  3. <thead>
  4. <tr>
  5. <th>Product</th><th>Quantity</th><th>Item Price</th><th>Item Total</th>
  6. </tr>
  7. </thead>
  8. <tbody>
  9. <?php
  10. foreach($_CONTROL->aryCheckOutItemViews as $objItemView)
  11. $objItemView->Render();
  12. ?>
  13. <tr>
  14. <td colspan=3>SubTotal:</td>
  15. <td colspan=1>
  16. <?php print money_format('%n',$_CONTROL->ItemsTotalPrice);?>
  17. </td>
  18. </tr>
  19. </tbody>
  20. </table>
  21. </div>