blob: 3047b7e87cdbe9a3525cfde9c010415f17b41c45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
{% extends "ishtar/sheet.html" %}
{% load i18n window_field %}
{% block head_sheet %}
{{block.super}}
<h1>{% trans "Find"%}</h1>
{% endblock %}
{% block content %}
{% if previous or next %}
<div class='tool'>
{%if previous%}
<a href="#" onclick='load_window("{% url show-historized-find item.pk previous|date:"c"%}");$("#{{window_id}}").hide();return false;'>{%trans "Previous version"%} ({{previous}})</a>
{% endif %}
{% if previous and next %} - {% endif %}
{%if next%}
<a href="#" onclick='if(confirm("{%trans "Are you sure to rollback to this version?"%}")){load_url("{% url revert-find item.pk item.history_date|date:"c"%}");closeAllWindows();load_window("{% url show-find item.pk None %}");}'>Rollback</a> -
<a href="#" onclick='load_window("{% url show-historized-find item.pk next|date:"c" %}");$("#{{window_id}}").hide();return false;'>{%trans "Next version"%} ({{next}})</a>
{% endif %}
</div>
{% endif %}
<div class='tool'>{%trans "Export as:"%} <a href='{% url show-find item.pk "odt" %}'>{%trans "OpenOffice.org file"%}</a>, <a href='{% url show-find item.pk "pdf" %}'>{%trans "PDF file"%}</a></div>
<div class='tool modify'><a href='{% url find_modify item.pk %}'>{% trans "Modify" %}</a></div>
{% if item.image %}
<a href='{{item.image.url}}' rel="prettyPhoto" title="{{item.label}}"><img src='{{item.thumbnail.url}}'/></a>
{% endif%}
{% field "Name" item.label %}
{% field "Description" item.description %}
{% field "Created by" item.history_creator.ishtaruser.full_label %}
{% field "Material type" item.material_type %}
{% field "Dating" item.dating %}
{% field "Length (cm)" item.length %}
{% field "Width (cm)" item.width %}
{% field "Height (cm)" item.height %}
{% field "Diameter (cm)" item.diameter %}
{% field "Volume (l)" item.volume %}
{% if item.weight %}{% with item.weight|add:' '|add:item.weight_unit as weight %}
{% field "Weight" weight %}
{% endwith %}{% endif %}
{% field "Find number" item.find_number %}
{% field "Conservatory state" item.conservatory_state %}
{% field "Type of preservation to consider" item.preservation_to_consider %}
{% if item.object_types.count %}
<p>
<label>{% trans "Object types" %}</label>
<span class='value'>{% for object_type in item.object_types.all %}
{% if forloop.counter0 %}, {% endif %}{{ object_type }}
{% endfor %}</span>
</p>
{% endif %}
{% if item.upstream_treatment %}<p><label>{%trans "Upstream treatment"%}{% trans ":"%}</label>
<span class='value'>{{item.upstream_treatment}} ({% for up in item.upstream_treatment.upstream_treatment.all %}{% if forloop.counter0 %}, {%endif %}{{up}}{% endfor %})</span></p>{% endif%}
{% if item.downstream_treatment %}<p><label>{%trans "Downstream treatment"%}{% trans ":"%}</label>
<span class='value'>{{item.downstream_treatment}} ({% for dt in item.downstream_treatment.downstream_treatment.all %}{% if forloop.counter0 %}, {%endif %}{{dt}}{% endfor %})</span></p>{% endif%}
{% if item.container %}<p><label>{%trans "Container"%}{% trans ":"%}</label>
<span class='value'>{{item.container}}</span></p>{% endif%}
<h3>{% trans "Associated base finds"%}</h3>
{% for base_find in item.base_finds.all %}
<p><label>{%trans "Complete ID"%}{% trans ":"%}</label>
<span class='value'>{{base_find.complete_id}}</span></p>
{% if base_find.discovery_date %}
<p><label>{%trans "Discovery date"%}{% trans ":"%}</label>
<span class='value'>{{base_find.discovery_date}}</span></p>
{% endif%}
{% if base_find.description %}
<p><label>{%trans "Description"%}{% trans ":"%}</label>
<span class='value'>{{base_find.description}}</span></p>
{% endif%}
{% if base_find.comment %}
<p><label>{%trans "Comment"%}{% trans ":"%}</label>
<span class='value'>{{base_find.comment}}</span></p>
{% endif%}
{% if base_find.special_interest %}
<p><label>{%trans "Special interest"%}{% trans ":"%}</label>
<span class='value'>{{base_find.special_interest}}</span></p>
{% endif%}
<p><label>{%trans "Related context record"%}{% trans ":"%}</label>
<span class='value'><a href="#" onclick='load_window("{% url show-contextrecord base_find.context_record.pk ''%}");'>{{ base_find.context_record }}</a></span></p>
<p><label>{%trans "Related parcel"%}{% trans ":"%}</label>
<span class='value'>{{base_find.context_record.parcel}}</span></p>
<p><label>{%trans "Related operation"%}{% trans ":"%}</label>
<span class='value'><a href="#" onclick='load_window("{% url show-operation base_find.context_record.operation.pk ''%}");'>{{ base_find.context_record.operation }}</a></span></p>
{% if forloop.counter0 %}<hr/>{% endif %}
{% endfor %}
<table>
<caption>{%trans "Documents"%}</caption>
<tr>
<th>{% trans "Title" %}</th>
<th>{% trans "Type" %}</th>
<th>{% trans "Authors" %}</th>
<th>{% trans "Link" %}</th>
</tr>
{% for doc in item.source.all %}
<tr>
<td class='string'>{{ doc.title }}</td>
<td class='string'>{{doc.source_type}}</td>
<td class='string'>{{ doc.authors.all|join:", " }}</td>
<td class='string'>{% if doc.associated_url %}<a href='{{doc.associated_url}}'>{% trans "Link"%}</a>{% endif %}</td>
</tr>
{% empty %}
<tr><td colspan="4" class='no_items'>{% trans "No document associated to this find" %}</td></tr>
{% endfor %}
</table>
{% endblock %}
|