91e0aefb |
1 | {% extends "container_base.html" %} |
2 | |
3 | {% block contenu %} |
4 | <h4>Ressource</h4> |
5 | |
1b0f1fe3 |
6 | <a class="back" href="javascript:history.go(-1)">Retourner à la page précédente</a> |
7 | |
f98ad449 |
8 | <div class="zone-texte ressource-retrieve"> |
1b0f1fe3 |
9 | |
10 | <h3>{{ ressource.title }}</h3> |
f98ad449 |
11 | |
12 | {% if ressource.subject %} |
13 | <div><span class="lbl">Sujet:</span> {{ ressource.subject }}</div> |
14 | {% endif %} |
15 | |
16 | {% if ressource.creator %} |
17 | <div><span class="lbl">Auteur:</span> {{ ressource.creator }}</div> |
18 | {% endif %} |
19 | {% if ressource.description %} |
20 | <div class="resultatResume"><span class="lbl">Description:</span> {{ ressource.description }}</div> |
21 | {% endif %} |
22 | |
23 | {% if ressource.source %} |
24 | <div><span class="lbl">Source:</span> {{ ressource.source }}</div> |
25 | {% endif %} |
26 | |
27 | {% if ressource.publisher %} |
28 | <div><span class="lbl">Editeur:</span> {{ ressource.publisher }}</div> |
29 | {% endif %} |
30 | |
31 | {% if ressource.format %} |
32 | <div><span class="lbl">Format:</span> {{ ressource.format }}</div> |
33 | {% endif %} |
34 | |
35 | {% if ressource.type %} |
36 | <div><span class="lbl">Type:</span> {{ ressource.type }}</div> |
37 | {% endif %} |
38 | |
39 | |
40 | |
41 | |
42 | |
43 | <div class="fiche"><span>Fiche: </span><a href="{% url savoirs.views.ressource_retrieve ressource.id %}">{% url savoirs.views.ressource_retrieve ressource.id %}</a></div> |
44 | <div class="original"><span>Contenu original: </span><a target="_blank" href="{{ ressource.uri }}">{{ ressource.uri }}</a></div> |
45 | <div class="provenance"><span>Provenance: </span><a target="_blank" href="{{ ressource.getServeurURL }}">{{ ressource.getServeurURL }}</a></div> |
46 | |
47 | |
48 | |
91e0aefb |
49 | </div> |
50 | {% endblock %} |