diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-01-11 11:43:43 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-01-11 11:43:43 +0100 |
commit | 4152ca5cffb5fc04150b89996313ab1126cb38d2 (patch) | |
tree | b90b1997c7521e23827e133506ed51bf66bffb18 /archaeological_finds/templates/ishtar/sheet_treatment.html | |
parent | 85e78bc70c7abb0772a060678b2309f27e6b2b11 (diff) | |
download | Ishtar-4152ca5cffb5fc04150b89996313ab1126cb38d2.tar.bz2 Ishtar-4152ca5cffb5fc04150b89996313ab1126cb38d2.zip |
Treatements: add cost fields
Diffstat (limited to 'archaeological_finds/templates/ishtar/sheet_treatment.html')
-rw-r--r-- | archaeological_finds/templates/ishtar/sheet_treatment.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/archaeological_finds/templates/ishtar/sheet_treatment.html b/archaeological_finds/templates/ishtar/sheet_treatment.html index 1b95ec288..633fa1829 100644 --- a/archaeological_finds/templates/ishtar/sheet_treatment.html +++ b/archaeological_finds/templates/ishtar/sheet_treatment.html @@ -32,6 +32,10 @@ {% field_li "Organization" item.organization %} {% field_li "Start date" item.start_date %} {% field_li "Closing date" item.end_date %} + {% field_li "Estimated cost" item.estimated_cost|intcomma '' " "|add:CURRENCY %} + {% field_li "Quoted cost" item.quoted_cost|intcomma '' " "|add:CURRENCY %} + {% field_li "Realized cost" item.realized_cost|intcomma '' " "|add:CURRENCY %} + {% field_li "Insurance cost" item.insurance_cost|intcomma '' " "|add:CURRENCY %} </ul> {% if item.description or item.comment or item.goal %} {% field "Comment" item.comment "<pre>" "</pre>" %} |