{% extends "ishtar/sheet.html" %} {% load i18n window_field from_dict link_to_window window_tables window_ope_tables window_header humanize %} {% block head_title %}{% trans "Treatment" %} - {{ item.label|default:"" }}{% endblock %} {% block toolbar %} {% window_nav item window_id 'show-treatment' 'treatment_modify' 'show-historized-treatment' 'revert-treatment' previous next 1 %} {% endblock %} {% block content %}
{% include "ishtar/blocks/window_image.html" %}

{{ item.label|default:"" }}

{% if item.other_reference %}

{{ item.other_reference }}

{% endif %}

{{ item.year }} - {{ item.index }}

{% if item.external_id %}

{{ item.external_id }}

{% endif %} {% if item.end_date %}

{% trans "Closed" context "Treatment" %} ({{item.end_date}})

{% else %}

{% trans "Active" context "Treatment" %}

{% endif %}

{% field_flex_multiple "Treatment type" item.treatment_types %} {% field_flex "State" item.treatment_state %} {% field_flex_detail "Associated request" item.file %} {% field_flex "Location" item.location %} {% field_flex "Container" item.container %} {% field_flex "Responsible" item.person %} {% field_flex "Organization" item.organization %} {% field_flex "Start date" item.start_date %} {% field_flex "Closing date" item.end_date %} {% field_flex "Estimated cost" item.estimated_cost|intcomma '' " "|add:CURRENCY %} {% field_flex "Quoted cost" item.quoted_cost|intcomma '' " "|add:CURRENCY %} {% field_flex "Realized cost" item.realized_cost|intcomma '' " "|add:CURRENCY %} {% field_flex "Insurance cost" item.insurance_cost|intcomma '' " "|add:CURRENCY %} {% field_flex_full "Comment" item.comment "
" "
" %} {% field_flex_full "Description" item.description "
" "
" %} {% field_flex_full "Goal" item.goal "
" "
" %} {% include "ishtar/blocks/sheet_json.html" %}
{% trans "Upstream finds" as finds %} {% if item.upstream.count %} {% dynamic_table_document finds 'finds_for_treatment' 'downstream_treatment' item.pk 'TABLE_COLS_FOR_OPE' output %} {% endif %} {% trans "Downstream finds" as finds %} {% if item.downstream.count %} {% dynamic_table_document finds 'finds_for_treatment' 'upstream_treatment' item.pk 'TABLE_COLS_FOR_OPE' output %} {% endif %} {% trans "Related operations" as related_operations %} {% dynamic_table_document related_operations 'operations' 'related_treatment' item.pk 'TABLE_COLS' output %} {% if item.source.count %} {% trans "Associated documents" as associated_docs %} {% dynamic_table_document associated_docs 'treatments_docs' 'treatment' item.pk '' output %} {% endif %} {% if item.administrative_act.count %} {% trans "Administrative acts" as admact_lbl %} {% table_administrativact admact_lbl item.administrative_act.all %} {% endif %} {% endblock %}