diff options
Diffstat (limited to 'pyblackbird_cc/templates/payments/cart_detail.html')
-rw-r--r-- | pyblackbird_cc/templates/payments/cart_detail.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pyblackbird_cc/templates/payments/cart_detail.html b/pyblackbird_cc/templates/payments/cart_detail.html index 1867f1a..7c51814 100644 --- a/pyblackbird_cc/templates/payments/cart_detail.html +++ b/pyblackbird_cc/templates/payments/cart_detail.html @@ -4,6 +4,7 @@ {% block content %} <div class="container my-5"> <h1 class="mb-4">My basket</h1> + <p class="text-body-secondary">{% lorem %}</p> {% if cart %} <div class="my-5 bg-secondary-subtle border border-1 rounded border-dark"> <div class="my-4 bg-white rounded"> @@ -22,14 +23,14 @@ <td>{{ item.product.name }}</td> <td>${{ item.product.price }}</td> <td>{{ item.quantity }}</td> - <td>${{ item.total }}</td> + <td>£{{ item.total }}</td> </tr> {% endfor %} </tbody> <tfoot> <tr> <th colspan="3" class="text-end">Total:</th> - <th>${{ cart_total }}</th> + <th>£{{ cart_total }}</th> </tr> </tfoot> </table> |