blob: 0e5ddfac0bb25126af34d7ff81eb0803eb1bccfc (
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
|
{% extends "ishtar/sheet.html" %}
{% load i18n %}
{% 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%}
<p><label>{%trans "Name"%}{% trans ":"%}</label>
<span class='value'>{{item.label}}</span></p>
{% if item.description %}<p><label>{%trans "Description"%}{% trans ":"%}</label>
<span class='value'>{{item.description}}</span></p>{% endif%}
<p><label>{%trans "Created by:"%}</label> <span class='value'>{{ item.history_creator.ishtaruser.full_label }}</span></p>
<p><label>{%trans "Material type"%}{% trans ":"%}</label>
<span class='value'>{{item.material_type}}</span></p>
<p><label>{%trans "Dating"%}{% trans ":"%}</label>
<span class='value'>{{item.dating}}</span></p>
{% if item.volume %}<p><label>{%trans "Volume (l)"%}{% trans ":"%}</label>
<span class='value'>{{item.volume}}</span></p>{% endif%}
{% if item.weight %}<p><label>{%trans "Weight (g)"%}{% trans ":"%}</label>
<span class='value'>{{item.weight}}</span></p>{% endif%}
{% if item.find_number %}<p><label>{%trans "Find number"%}{% trans ":"%}</label>
<span class='value'>{{item.find_number}}</span></p>{% endif%}
{% if item.upstream_treatment %}<p><label>{%trans "Upstream treatment"%}{% trans ":"%}</label>
<span class='value'>{{item.upstream_treatment}}</span></p>{% endif%}
{% if item.downstream_treatment %}<p><label>{%trans "Downstream treatment"%}{% trans ":"%}</label>
<span class='value'>{{item.downstream_treatment}}</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>
<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 %}
|