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.

33 lines
933 B

  1. <a href="<?=base_url('order/form')?>">신규등록하기</a>
  2. <table class="table">
  3. <thead>
  4. <tr>
  5. <th>배송확정일</th>
  6. <th>주문번호</th>
  7. <th>주문자명</th>
  8. <th>상품명</th>
  9. <th>수량</th>
  10. <th>배송</th>
  11. <th>수정</th>
  12. <th>삭제</th>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. <?php foreach ($list as $od):?>
  17. <tr>
  18. <td><?=date('Y-m-d', strtotime($od['time']))?></td>
  19. <td><a href="<?=base_url('order/view/').$od['idx']?>"><?php echo $od['order_num']?></a></td>
  20. <td><?=$od['order_hu_name']?></td>
  21. <td><?=$od['order_name']?></td>
  22. <td><?=$od['count']?></td>
  23. <td><?=$od['status']?></td>
  24. <td><a href="<?=base_url('order/form/').$od['idx']?>">수정</a></td>
  25. <td><a href="<?=base_url('order/remove/').$od['idx']?>">삭제</a></td>
  26. </tr>
  27. <?php endforeach;?>
  28. </tbody>
  29. </table>