Skip to content
Snippets Groups Projects
Commit f819137b authored by Diana Huang's avatar Diana Huang
Browse files

Fix bracket bug.

parent ccc3589e
No related branches found
Tags release-2020-03-31-18.21
No related merge requests found
......@@ -8,7 +8,7 @@ ${_("Items in your order:")}
${_("Quantity - Description - Price")}
%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
${_("Total: {total_cost}").format(total_cost=order.total_cost)}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment