html attributes border: 1.
html table: [
cart countsAndItems do:
[:assoc | |count item|
count _ assoc key.
item _ assoc value.
html tableHeadings: #(Item Price Count Total).
html attributes align: #right.
html tableRow: [
html tableData: item title.
html tableData: item price printStringAsCents.
html tableData: count asString.
html tableData: (item price * count) printStringAsCents.
]].
html attributes align: #right.
html tableRowWith: [html bold: cart totalPrice printStringAsCents] span: 4.
].
html paragraph.
html form: [
html submitButtonWithAction: [self answer: true] text: 'Proceed with checkout'.
html break.
html submitButtonWithAction: [self answer: false] text: 'Modify my order'.
]
|