11{% extends 'generic/object.html' %}
22{% load helpers %}
33{% load plugins %}
4+ {% load custom_filters %}
45{% load render_table from django_tables2 %}
56
67{% block content %}
@@ -54,7 +55,7 @@ <h5 class="card-header">Financial Information</h5>
5455 </ tr >
5556 < tr >
5657 < th scope ="row "> Recurring Charge</ th >
57- < td class ="text-end "> {{ object.charge_currency }} {{ object.recurring_charge|floatformat:2 }}</ td >
58+ < td class ="text-end "> {{ object.charge_currency }} {{ object.recurring_charge|floatformat:2|spacecomma }}</ td >
5859 </ tr >
5960 < tr >
6061 < th scope ="row "> Recurring Period</ th >
@@ -70,23 +71,23 @@ <h5 class="card-header">Financial Information</h5>
7071 </ tr >
7172 < tr >
7273 < th scope ="row "> Total Recurring Cost</ th >
73- < td class ="text-end "> < strong > {{ object.charge_currency }} {{ object.total_recurring_cost|floatformat:2 }}</ strong > </ td >
74+ < td class ="text-end "> < strong > {{ object.charge_currency }} {{ object.total_recurring_cost|floatformat:2|spacecomma }}</ strong > </ td >
7475 </ tr >
7576 {% if object.non_recurring_charge %}
7677 < tr >
7778 < th scope ="row "> Non-Recurring Charge</ th >
78- < td class ="text-end "> {{ object.charge_currency }} {{ object.non_recurring_charge|floatformat:2 }}</ td >
79+ < td class ="text-end "> {{ object.charge_currency }} {{ object.non_recurring_charge|floatformat:2|spacecomma }}</ td >
7980 </ tr >
8081 {% endif %}
8182 {% if object.total_cumulative_non_recurring %}
8283 < tr >
8384 < th scope ="row "> Cumulative Non-Recurring</ th >
84- < td class ="text-end "> < em > {{ object.charge_currency }} {{ object.total_cumulative_non_recurring|floatformat:2 }}</ em > </ td >
85+ < td class ="text-end "> < em > {{ object.charge_currency }} {{ object.total_cumulative_non_recurring|floatformat:2|spacecomma }}</ em > </ td >
8586 </ tr >
8687 {% endif %}
8788 < tr class ="table-active ">
8889 < th scope ="row "> Total Contract Value</ th >
89- < td class ="text-end "> < strong > {{ object.charge_currency }} {{ object.total_contract_value|floatformat:2 }}</ strong > </ td >
90+ < td class ="text-end "> < strong > {{ object.charge_currency }} {{ object.total_contract_value|floatformat:2|spacecomma }}</ strong > </ td >
9091 </ tr >
9192 </ table >
9293 </ div >
0 commit comments