{% extends "ishtar/sheet.html" %} {% load i18n window_field from_dict link_to_window %} {% block head_sheet %} {{block.super}}

{% trans "Find"%}

{% endblock %} {% block content %} {% if previous or next %}
{% if previous %} {%trans "Previous version"%} ({{previous}}) {% endif %} {% if previous and next %} - {% endif %} {%if next%} Rollback - {%trans "Next version"%} ({{next}}) {% endif %}
{% endif %}
{%trans "Export as:"%} {%trans "OpenOffice.org file"%}, {%trans "PDF file"%}
{% trans "Modify" %}
{% if item.image %} {% endif%} {% if item.upstream_treatment %} {% for items, treatment in item.upstream_treatments %} {% endfor %}
{% trans "Upstream treatment" %}
{% trans "Type" %} {% trans "Related find" %} {% trans "Person" %} {% trans "Container" %} {% trans "Start date" %} {% trans "End date" %}
{{ treatment.treatment_type }} {% for item in items %}{{item}} {{ item|link_to_window}}{% endfor %} {{ treatment.person|default_if_none:"-" }} {{ treatment.container|default_if_none:"-" }} {{ treatment.start_date|default_if_none:"-" }} {{ treatment.end_date|default_if_none:"-" }}
{% endif %} {% if item.downstream_treatment %} {% for items, treatment in item.downstream_treatments %} {% endfor %}
{% trans "Downstream treatment" %}
{% trans "Type" %} {% trans "Related find" %} {% trans "Person" %} {% trans "Start date" %} {% trans "End date" %}
{{ treatment.treatment_type }} {% for item in items %}{{item}} {{ item|link_to_window}}{% endfor %} {{ treatment.person|default_if_none:"" }} {{ treatment.start_date|default_if_none:"" }} {{ treatment.end_date|default_if_none:"" }}
{% endif %}

{% trans "Associated base finds"%}

{% for base_find in item.base_finds.all %} {% field "Description" base_find.description "
" "
" %} {% field "Comment" base_find.comment "
" "
" %} {% if forloop.counter0 %}
{% endif %} {% endfor %} {% if item.source.count %}

{% trans "Documents"%}

{% for doc in item.source.all %} {% empty %} {% endfor %}
{%trans "Documents"%}
{% trans "Title" %} {% trans "Type" %} {% trans "Authors" %} {% trans "Link" %}
{{ doc.title }} {{doc.source_type}} {{ doc.authors.all|join:", " }} {% if doc.associated_url %}{% trans "Link"%}{% endif %}
{% endif %} {% endblock %}