blob: 044d1b89d03280b83b0faa4bd65714586ae89fa0 (
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
|
{% extends "ishtar/sheet.html" %}
{% load i18n window_field window_link %}
{% block content %}
{% block export %}
<div class='tool'>TO BE DEFINED</div>
{% endblock %}
{% block general %}
{% field "Title" item.title %}
{% field "Source type" item.source_type %}
{% field "Format type" item.format_type %}
{% field "Scale" item.scale %}
{% field_url "Web link" item.associated_url %}
{% field_multiple "Authors" item.authors %}
{% field "Item number" item.item_number %}
{% field "Ref." item.reference %}
{% field "Internal ref." item.internal_reference %}
{% field "Description" item.description %}
{% field "Comment" item.comment %}
{% field "Additional information" item.additional_information %}
{% endblock %}
{% block related %}
{% field "Related item" item.owner %}
{% endblock %}
{% endblock %}
|