PacktPublishing / Django-4-by-example

Django 4 by example (4th Edition) published by Packt
https://djangobyexample.com/
MIT License
818 stars 461 forks source link

Chapter 10. Fix total amount #60

Open maskalev opened 10 months ago

maskalev commented 10 months ago

Add floatformat:2 to order.get_total_cost in admin/orders/order/detail.html

    <tr>
      <th>Total amount</th>
      <td>${{ order.get_total_cost }}</td>
    </tr>

image