diff --git a/templates/bill/bill_detail.html b/templates/bill/bill_detail.html index 391ccc45..c68457ef 100644 --- a/templates/bill/bill_detail.html +++ b/templates/bill/bill_detail.html @@ -3,6 +3,7 @@ {% load static %} {% load django_ledger %} {% load custom_filters %} +{% load tenhal_tag %} {% block title %}{% trans "Bill Details" %}{% endblock %} {% block content %}
- {% trans 'Amount Due' %}: {% currency_symbol %}{{ bill.get_amount_open | currency_format }} + {% trans 'Amount Due' %}: {{ bill.get_amount_open | currency_format }}
- {% trans 'Amount Paid' %}: {% currency_symbol %}{{ bill.amount_paid | currency_format }} + {% trans 'Amount Paid' %}: {{ bill.amount_paid | currency_format }}
{% trans 'Progress' %}: {{ bill.get_progress | percentage }}
{% trans 'Amount Due' %}: - {% currency_symbol %}{{ bill.amount_due | currency_format }} + {{ bill.amount_due | currency_format }}
{% trans 'Due Date' %}: @@ -178,7 +178,7 @@
{% trans 'Amount Paid' %}: - {% currency_symbol %}{{ bill.amount_paid | currency_format }} + {{ bill.amount_paid | currency_format }}
{% trans 'Paid Date' %}: @@ -192,7 +192,7 @@
{% trans 'Bill Amount' %}: - {% currency_symbol %}{{ bill.amount_due | currency_format }} + {{ bill.amount_due | currency_format }}
{{ bill.get_bill_status_display | upper }}
|
@@ -83,6 +83,21 @@
{{ opportunity.expected_revenue }}
|
+ |
|
+
+
+ + {% trans "Marked Price" %} + + + |
+
+ + {{ opportunity.car.marked_price }} + + |
| diff --git a/templates/inventory/car_detail.html b/templates/inventory/car_detail.html index 4b8b0c68..1de0c5a4 100644 --- a/templates/inventory/car_detail.html +++ b/templates/inventory/car_detail.html @@ -1,5 +1,6 @@ {% extends 'base.html' %} {% load i18n static custom_filters %} +{% load tenhal_tag %} {% block title %}{{ _("Car Details") }}{% endblock %} {% block customCSS %} |