Book Title: {{ item.title }}
ISBN: {{ item.isbn }}
Quantity: {{ item.quantity }}
Price per Item: ${{ "%.2f"|format(item.price) }}
Subtotal: ${{ "%.2f"|format(item.quantity * item.price) }}
Total Price: ${{ "%.2f"|format(total_price) }}