| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <style>
- th, td { margin: 0; padding: 0; width: 180px; text-align: left; }
- .name { font-size: 14px; font-weight: bolder; width: 280px; }
- .price { color: red; font-size: 18px; }
- a { display: inline-block; text-align: center; background-color: red; }
- .back { width: 120px; height: 30px; line-height: 30px; }
- .del { width: 60px; height: 20px; line-height: 20px; }
- a:link, a:visited { color: white; text-decoration: none; }
- .left { float: left; width: 1000px;}
- .right { float: right; }
- .total { text-align: right; }
- </style>
- </head>
- <body>
- <div class="left">
- <h1>购物车列表</h1>
- <hr>
- </div>
- <div class="right">
- <a href="/" class="back">返回</a>
- </div>
- {% if cart %}
- <table style="clear: both;">
- <tr>
- <th>商品名称</th>
- <th>商品单价</th>
- <th>商品数量</th>
- <th>商品总价</th>
- <th>操作</th>
- </tr>
- {% for item in cart %}
- <tr>
- <td class="name">{{ item.goods.name }}</td>
- <td class="price">¥{{ item.goods.price }}</td>
- <td>{{ item.amount }}</td>
- <td class="price">¥{{ item.total }}</td>
- <td>
- <a href="" class="del">删除</a>
- </td>
- </tr>
- {% endfor %}
- <tr>
- <td colspan="5" class="total price">¥{{ cart.total }}元</td>
- </tr>
- </table>
- <a href="" class="back">清空购物车</a>
- {% else %}
- <h3 style="clear: both;">购物车中暂时没有商品!</h3>
- {% endif %}
- </body>
- </html>
|