{% extends "base.html" %} {% block content %}
{{ shop.shop_name }}
| Item | Qty | Price | Total |
|---|---|---|---|
| {% if item.product %}{{ item.product.name }}{% else %}Deleted Product{% endif %} | {% set q = item.quantity or 0 %}{{ q|int if q == q|int else "%.2f"|format(q) }} | {{ "%.2f"|format(item.price) }} | {{ "%.2f"|format(item.total) }} |