<!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="list_goods" class="back">返回</a> </div> {% if cart_items %} <table style="clear: both;"> <tr> <th>商品名称</th> <th>商品单价</th> <th>商品数量</th> <th>商品总价</th> <th>操作</th> </tr> {% for item in cart_items %} <tr> <td class="name">{{ item.name }}</td> <td class="price">¥{{ item.unit_price }}</td> <td>{{ item.amount }}</td> <td class="price">¥{{ item.total_price }}</td> <td> <a href="" class="del">删除</a> </td> </tr> {% endfor %} <tr> <td colspan="5" class="total price">¥{{ cart.total }}元</td> </tr> </table> <a href="clear_cart" class="back">清空购物车</a> {% else %} <h3 style="clear: both;">购物车中暂时没有商品!</h3> {% endif %} </body> </html>