author | ymh <ymh.work@gmail.com> |
Fri, 05 Jul 2019 15:58:28 +0200 | |
changeset 37 | 7e614ca2431a |
parent 20 | a07ea7805cc4 |
permissions | -rw-r--r-- |
3
12fb6a535aa6
Add specific templates to iconolab-mcc and edit docker settings
Riwad Salim
parents:
diff
changeset
|
1 |
{% load iconolab_mcc_tags %} |
12fb6a535aa6
Add specific templates to iconolab-mcc and edit docker settings
Riwad Salim
parents:
diff
changeset
|
2 |
|
12fb6a535aa6
Add specific templates to iconolab-mcc and edit docker settings
Riwad Salim
parents:
diff
changeset
|
3 |
<dl class="dl-horizontal"> |
12fb6a535aa6
Add specific templates to iconolab-mcc and edit docker settings
Riwad Salim
parents:
diff
changeset
|
4 |
{% if item.metadatas.metadata_obj.designation %}<dt>Désignation</dt><dd>{{item.metadatas.metadata_obj.designation}}</dd>{% endif %} |
12fb6a535aa6
Add specific templates to iconolab-mcc and edit docker settings
Riwad Salim
parents:
diff
changeset
|
5 |
{% if item.metadatas.metadata_obj.authors %}<dt>Auteur(s)</dt><dd>{{item.metadatas.metadata_obj.authors}}</dd>{% endif %} |
12fb6a535aa6
Add specific templates to iconolab-mcc and edit docker settings
Riwad Salim
parents:
diff
changeset
|
6 |
{% if item.metadatas.metadata_obj.field %}<dt>Domaine</dt><dd>{{item.metadatas.metadata_obj.field}}</dd>{% endif %} |
12fb6a535aa6
Add specific templates to iconolab-mcc and edit docker settings
Riwad Salim
parents:
diff
changeset
|
7 |
{% if item.metadatas.metadata_obj.conservation_location %}<dt>Conservé à</dt><dd>{{item.metadatas.metadata_obj.conservation_location}}</dd>{% endif %} |
12fb6a535aa6
Add specific templates to iconolab-mcc and edit docker settings
Riwad Salim
parents:
diff
changeset
|
8 |
{% if item.metadatas.metadata_obj.datation %}<dt>Datation</dt><dd>{{item.metadatasmetadata_obj..datation}}</dd>{% endif %} |
12fb6a535aa6
Add specific templates to iconolab-mcc and edit docker settings
Riwad Salim
parents:
diff
changeset
|
9 |
{% if item.metadatas.metadata_obj.technics %}<dt>Techniques</dt><dd>{{item.metadatas.metadata_obj.technics}}</dd>{% endif %} |
12fb6a535aa6
Add specific templates to iconolab-mcc and edit docker settings
Riwad Salim
parents:
diff
changeset
|
10 |
{% if item.metadatas.metadata_obj.measurements %}<dt>Mesures : {{item.metadatas.metadata_obj.measurements}}</h5>{% endif %} |
12fb6a535aa6
Add specific templates to iconolab-mcc and edit docker settings
Riwad Salim
parents:
diff
changeset
|
11 |
{% if item.metadatas.metadata_obj.create_or_usage_location %}<dt>Lieu de création/utilisation</dt><dd>{{item.metadatas.metadata_obj.create_or_usage_location}}</dd>{% endif %} |
12fb6a535aa6
Add specific templates to iconolab-mcc and edit docker settings
Riwad Salim
parents:
diff
changeset
|
12 |
{% if item.metadatas.metadata_obj.discovery_context %}<dt>Contexte de découverte</dt><dd>{{item.metadatas.metadata_obj.discovery_context}}</dd>{% endif %} |
12fb6a535aa6
Add specific templates to iconolab-mcc and edit docker settings
Riwad Salim
parents:
diff
changeset
|
13 |
{% if item.metadatas.metadata_obj.photo_credits %}<dt>Crédits photographiques</dt><dd>{{item.metadatas.metadata_obj.photo_credits}}</dd>{% endif %} |
12fb6a535aa6
Add specific templates to iconolab-mcc and edit docker settings
Riwad Salim
parents:
diff
changeset
|
14 |
{% if item.metadatas.metadata_obj.inventory_number %}<dt>Numéro d'inventaire</dt><dd>{{item.metadatas.metadata_obj.inventory_number}}</dd>{% endif %} |
12fb6a535aa6
Add specific templates to iconolab-mcc and edit docker settings
Riwad Salim
parents:
diff
changeset
|
15 |
</dl> |
12fb6a535aa6
Add specific templates to iconolab-mcc and edit docker settings
Riwad Salim
parents:
diff
changeset
|
16 |
{% if item.metadatas.metadata_obj.joconde_ref %} |
20
a07ea7805cc4
Adding one migration and adapting templates for link images collections in iconolab-mcc
Riwad Salim
parents:
3
diff
changeset
|
17 |
{% with item_link_url=item.get_item_link_url item_link_text=item.get_item_link_text %} |
a07ea7805cc4
Adding one migration and adapting templates for link images collections in iconolab-mcc
Riwad Salim
parents:
3
diff
changeset
|
18 |
{% if item_link_url and item_link_text %} |
3
12fb6a535aa6
Add specific templates to iconolab-mcc and edit docker settings
Riwad Salim
parents:
diff
changeset
|
19 |
<p class="text-center"> |
20
a07ea7805cc4
Adding one migration and adapting templates for link images collections in iconolab-mcc
Riwad Salim
parents:
3
diff
changeset
|
20 |
<a href= "{{item_link_url}}" target="_blank"> |
a07ea7805cc4
Adding one migration and adapting templates for link images collections in iconolab-mcc
Riwad Salim
parents:
3
diff
changeset
|
21 |
{{item_link_text}} |
3
12fb6a535aa6
Add specific templates to iconolab-mcc and edit docker settings
Riwad Salim
parents:
diff
changeset
|
22 |
</a> |
12fb6a535aa6
Add specific templates to iconolab-mcc and edit docker settings
Riwad Salim
parents:
diff
changeset
|
23 |
</p> |
12fb6a535aa6
Add specific templates to iconolab-mcc and edit docker settings
Riwad Salim
parents:
diff
changeset
|
24 |
{% endif %} |
20
a07ea7805cc4
Adding one migration and adapting templates for link images collections in iconolab-mcc
Riwad Salim
parents:
3
diff
changeset
|
25 |
{% endwith %} |
a07ea7805cc4
Adding one migration and adapting templates for link images collections in iconolab-mcc
Riwad Salim
parents:
3
diff
changeset
|
26 |
{% endif %} |
a07ea7805cc4
Adding one migration and adapting templates for link images collections in iconolab-mcc
Riwad Salim
parents:
3
diff
changeset
|
27 |