diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-07-11 01:37:12 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-07-11 01:37:12 +0200 |
commit | 58c2776a1c15e4b17bdcfc9c9eb9017866713f21 (patch) | |
tree | b04d8589708f69d9fa3993bf36340107b50ed00e /archaeological_files/templates | |
parent | 796c511682b93c2837b070e3aa70074b69d5236d (diff) | |
download | Ishtar-58c2776a1c15e4b17bdcfc9c9eb9017866713f21.tar.bz2 Ishtar-58c2776a1c15e4b17bdcfc9c9eb9017866713f21.zip |
Preventive file: add some fields - better sheet - Administrativ act: add comment
Diffstat (limited to 'archaeological_files/templates')
-rw-r--r-- | archaeological_files/templates/ishtar/sheet_file.html | 48 |
1 files changed, 25 insertions, 23 deletions
diff --git a/archaeological_files/templates/ishtar/sheet_file.html b/archaeological_files/templates/ishtar/sheet_file.html index d54d29e7e..417977a11 100644 --- a/archaeological_files/templates/ishtar/sheet_file.html +++ b/archaeological_files/templates/ishtar/sheet_file.html @@ -243,11 +243,13 @@ <div class="tab-pane fade show active" id="{{window_id}}-costs" role="tabpanel" aria-labelledby="{{window_id}}-costs-tab"> <div class="row"> + {% field_flex "Intervention period" item.intervention_period %} + {% field_flex "Study period" item.study_period %} + {% field_flex "Report due period" item.report_due_period %} {% field_flex "Start date" item.start_date|date:"DATE_FORMAT" %} {% field_flex "End date" item.end_date|date:"DATE_FORMAT" %} {% field_flex "Ground start date" item.ground_start_date|date:"DATE_FORMAT" %} {% field_flex "Ground end date" item.ground_end_date|date:"DATE_FORMAT" %} - {% field_flex "Study period" item.study_period %} {% field_flex "Execution report date" item.execution_report_date|date:"DATE_FORMAT" %} </div> <div class="row"> @@ -276,17 +278,17 @@ <thead> <tr> <th>{% trans "Job" %}</th> - <th colspan="3">{% trans "Planned" %}</th> - <th colspan="3">{% trans "Effective" %}</th> + <th colspan="3" class="text-center">{% trans "Planned" %}</th> + <th colspan="3" class="text-center">{% trans "Effective" %}</th> </tr> <tr> <td> </td> - <th>{% trans "Man by day" %}</th> - <th>{% trans "Days" %}</th> - <th>{% trans "Cost" %}</th> - <th>{% trans "Man by day" %}</th> - <th>{% trans "Days" %}</th> - <th>{% trans "Cost" %}</th> + <th class="text-center">{% trans "Man by day" %}</th> + <th class="text-center">{% trans "Days" %}</th> + <th class="text-center">{% trans "Cost" %}</th> + <th class="text-center">{% trans "Man by day" %}</th> + <th class="text-center">{% trans "Days" %}</th> + <th class="text-center">{% trans "Cost" %}</th> </tr> </thead> {% for job in item.ground_jobs.all %} @@ -328,17 +330,17 @@ <thead> <tr> <th>{% trans "Job" %}</th> - <th colspan="3">{% trans "Planned" %}</th> - <th colspan="3">{% trans "Effective" %}</th> + <th colspan="3" class="text-center">{% trans "Planned" %}</th> + <th colspan="3" class="text-center">{% trans "Effective" %}</th> </tr> <tr> <td> </td> - <th>{% trans "Man by day" %}</th> - <th>{% trans "Days" %}</th> - <th>{% trans "Cost" %}</th> - <th>{% trans "Man by day" %}</th> - <th>{% trans "Days" %}</th> - <th>{% trans "Cost" %}</th> + <th class="text-center">{% trans "Man by day" %}</th> + <th class="text-center">{% trans "Days" %}</th> + <th class="text-center">{% trans "Cost" %}</th> + <th class="text-center">{% trans "Man by day" %}</th> + <th class="text-center">{% trans "Days" %}</th> + <th class="text-center">{% trans "Cost" %}</th> </tr> </thead> {% for job in item.jobs.all %} @@ -380,17 +382,17 @@ <thead> <tr> <th>{% trans "Equipment / service" %}</th> - <th colspan="4">{% trans "Planned" %}</th> - <th colspan="4">{% trans "Effective" %}</th> + <th colspan="4" class="text-center">{% trans "Planned" %}</th> + <th colspan="4" class="text-center">{% trans "Effective" %}</th> </tr> <tr> <td> </td> - <th>{% trans "Quantity" %}</th> + <th class="text-center">{% trans "Quantity" %}</th> <th colspan="2"> </th> - <th>{% trans "Cost" %}</th> - <th>{% trans "Quantity" %}</th> + <th class="text-center">{% trans "Cost" %}</th> + <th class="text-center">{% trans "Quantity" %}</th> <th colspan="2"> </th> - <th>{% trans "Cost" %}</th> + <th class="text-center">{% trans "Cost" %}</th> </tr> </thead> {% for equipment in equipments %} |