How to show discounted price per item on invoice in Order Printer

I need Order Printer to show the discounted price of each product on the original line. The code is attached.

{% if show_line_item_taxes %} {% endif %} {% for line_item in line_items %} {% if show_line_item_taxes %} {% endif %} {% endfor %}
Quantity SKU ItemTaxesPrice
{{ line_item.quantity }} x {{ line_item.sku }} {{ line_item.title }} {% for tax_line in line_item.tax_lines %} {{ tax_line.price | money }} {{ tax_line.title }}
{% endfor %}
{{ line_item.price | money }}