Commit f819137b by Diana Huang

Fix bracket bug.

parent ccc3589e
...@@ -8,7 +8,7 @@ ${_("Items in your order:")} ...@@ -8,7 +8,7 @@ ${_("Items in your order:")}
${_("Quantity - Description - Price")} ${_("Quantity - Description - Price")}
%for order_item in order_items: %for order_item in order_items:
${order_item.qty} - ${order_item.line_desc} - $(order_item.line_cost} ${order_item.qty} - ${order_item.line_desc} - ${order_item.line_cost}
%endfor %endfor
${_("Total: {total_cost}").format(total_cost=order.total_cost)} ${_("Total: {total_cost}").format(total_cost=order.total_cost)}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment