| author | ymh <ymh.work@gmail.com> |
| Tue, 27 Oct 2015 13:03:54 +0100 | |
| changeset 667 | d90c915bb1bd |
| parent 620 | f45d7494332e |
| permissions | -rw-r--r-- |
| 252 | 1 |
{% extends "base.html" %} |
|
396
064f4cdc48c3
Set up css convention for the main titles of the pages and add translation support in main pages
rougeronj
parents:
345
diff
changeset
|
2 |
{% load i18n %} |
|
279
177b508612f4
add, configure and correct hdalab to installed apps
cavaliet
parents:
271
diff
changeset
|
3 |
{% load static %} |
| 252 | 4 |
|
5 |
{% block title %}{{block.super}} > Recherche par arbre{% endblock %} |
|
6 |
||
7 |
{% block css_import %} |
|
8 |
{{block.super}} |
|
| 293 | 9 |
<link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/ui-lightness/jquery-ui-1.10.4.min.css' %}" /> |
|
279
177b508612f4
add, configure and correct hdalab to installed apps
cavaliet
parents:
271
diff
changeset
|
10 |
<link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/trees.css?refresh' %}" /> |
|
177b508612f4
add, configure and correct hdalab to installed apps
cavaliet
parents:
271
diff
changeset
|
11 |
<link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/thesaurus.css?refresh' %}" /> |
| 252 | 12 |
{% endblock %} |
13 |
||
14 |
{% block js_import %} |
|
15 |
{{block.super}} |
|
|
620
f45d7494332e
upgrade renkan, correct tagcloud, migrate to lodash
ymh <ymh.work@gmail.com>
parents:
396
diff
changeset
|
16 |
<script src="{% static 'hdalab/lib/lodash.min.js' %}"></script> |
|
279
177b508612f4
add, configure and correct hdalab to installed apps
cavaliet
parents:
271
diff
changeset
|
17 |
<script src="{% static 'hdalab/lib/mustache.js' %}"></script> |
| 345 | 18 |
<script src="{% static 'hdalab/lib/jquery-ui-1.10.4.min.js' %}"></script> |
| 252 | 19 |
<script type="text/javascript"> |
20 |
endpoints = { |
|
|
279
177b508612f4
add, configure and correct hdalab to installed apps
cavaliet
parents:
271
diff
changeset
|
21 |
fill_tree: "{% url 'fill_tree' %}", |
|
177b508612f4
add, configure and correct hdalab to installed apps
cavaliet
parents:
271
diff
changeset
|
22 |
datasheet: "{% url 'notice' 'ID' %}" |
| 252 | 23 |
}; |
24 |
</script> |
|
|
279
177b508612f4
add, configure and correct hdalab to installed apps
cavaliet
parents:
271
diff
changeset
|
25 |
<script src="{% static 'hdalab/js/trees.js?refresh' %}"></script> |
|
177b508612f4
add, configure and correct hdalab to installed apps
cavaliet
parents:
271
diff
changeset
|
26 |
<script src="{% static 'hdalab/js/thesaurus.js?refresh' %}"></script> |
| 252 | 27 |
{% endblock %} |
28 |
||
29 |
{% block thesaurus_actif %}actif{% endblock %} |
|
30 |
||
31 |
{% block main_content %} |
|
|
396
064f4cdc48c3
Set up css convention for the main titles of the pages and add translation support in main pages
rougeronj
parents:
345
diff
changeset
|
32 |
<div class="all-title"> |
|
064f4cdc48c3
Set up css convention for the main titles of the pages and add translation support in main pages
rougeronj
parents:
345
diff
changeset
|
33 |
<h1>{% trans 'Recherche par arbre' %}</h1> |
|
064f4cdc48c3
Set up css convention for the main titles of the pages and add translation support in main pages
rougeronj
parents:
345
diff
changeset
|
34 |
</div> |
| 261 | 35 |
<div class="explain"> |
36 |
<p>Cette interface présente deux extraits de thésaurus utilisés par le ministère de la Culture et de la Communication :</p> |
|
37 |
<ul> |
|
38 |
<li>La branche « Secteur urbain » du Thésaurus de l’architecture et de l’urbanisme (état 2010)</li> |
|
39 |
<li>La branche « Architecture d’habitation » du Thésaurus iconographique Garnier (état 2012)</li> |
|
40 |
</ul> |
|
41 |
<p>Les mots-clés de ces branches ont été liés avec Wikipédia. Ils deviennent ainsi sémantiquement interopérables avec les tags d’HDA-Lab. Comme le montre l’interface, ce procédé permet d’organiser et de visualiser les tags et les ressources d'HDA-Lab en utilisant des thésaurus « métiers » externes. Dans cet extrait, le mot-clé « Cité jardin » est présenté, en vis-à-vis, dans deux univers sémantiques différents</p> |
|
42 |
</div> |
|
|
620
f45d7494332e
upgrade renkan, correct tagcloud, migrate to lodash
ymh <ymh.work@gmail.com>
parents:
396
diff
changeset
|
43 |
|
| 252 | 44 |
<div class="column leftcol"> |
45 |
<h3>Arborescence 1</h3> |
|
46 |
<div class="cattree"> |
|
|
620
f45d7494332e
upgrade renkan, correct tagcloud, migrate to lodash
ymh <ymh.work@gmail.com>
parents:
396
diff
changeset
|
47 |
|
| 252 | 48 |
</div> |
49 |
</div> |
|
50 |
<div class="separator"></div> |
|
51 |
<div class="column rightcol"> |
|
52 |
<h3>Arborescence 2</h3> |
|
53 |
<div class="cattree"> |
|
|
620
f45d7494332e
upgrade renkan, correct tagcloud, migrate to lodash
ymh <ymh.work@gmail.com>
parents:
396
diff
changeset
|
54 |
|
| 252 | 55 |
</div> |
56 |
</div> |
|
|
620
f45d7494332e
upgrade renkan, correct tagcloud, migrate to lodash
ymh <ymh.work@gmail.com>
parents:
396
diff
changeset
|
57 |
{% endblock %} |