Subversion Repositories eFlore/Applications.coel-consultation

Rev

Rev 14 | Rev 18 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 14 Rev 17
Line 1... Line -...
1
<h1>Collection <?=$id?></h1>
-
 
2
1
<h1><?=$info['cc_nom']?> <span class="discretion">(id:<?=$id?>)</span></h1>
-
 
2
<dl>
-
 
3
	<dt>Structure</dt> <dd><?=$info['_structure_nom_']?></dd>
-
 
4
	<dt>Ville</dt> <dd><?=$info['_structure_ville_']?></dd>
-
 
5
</dl>
-
 
6
 
-
 
7
<h2>Général</h2>
-
 
8
<h3>Renseignements administratifs</h3>
-
 
9
<dl>
-
 
10
	<dt>Autres intitulés</dt> <dd><?=$info['_nom_alternatif_']?></dd>
-
 
11
	<dt>À pour collection parente</dt> <dd><?=$info['_collection_mere_nom_']?> <?php if ($info['cc_ce_mere'] != '0') : ?><span class="discretion">(id:<?=$info['cc_ce_mere']?>)</span><?php endif; ?></dd>
-
 
12
	<dt>Type de collection</dt> <dd><?=$info['_type_ncd_']?></dd>
-
 
13
	<dt>Statut</dt> <dd><?=$info['_type_depot_']?></dd>
-
 
14
	<dt>Identifiants alternatifs</dt> <dd><?=$info['_identifiant_alternatif_']?></dd>
-
 
15
	<dt>Acronymes</dt> <dd><?=$info['_code_']?></dd>
-
 
16
	<dt>Cote</dt> <dd><?=$info['cc_cote']?></dd>
-
 
17
</dl>
-
 
18
 
-
 
19
<h3>Statut, intitulés et codes</h3>
-
 
20
<dl>
-
 
21
	<dt>Description</dt> <dd><?=$info['cc_description']?></dd>
-
 
22
	<dt>Description spécialiste</dt> <dd><?=$info['cc_description_specialiste']?></dd>
-
 
23
	<dt>Historique</dt> <dd><?=$info['cc_historique']?></dd>
-
 
24
	<dt>Site web</dt> <dd><?=$info['_url_']?></dd>
-
 
25
</dl>
-
 
26
 
-
 
27
<h3>Spécimens «types»</h3>
-
 
28
<dl>
-
 
29
	<dt>Présence</dt> <dd><?=$info['_specimen_type_']?></dd>
-
 
30
	<dt>Nombre</dt> <dd><?=$info['cc_specimen_type_nbre']?> <?=$info['_specimen_type_nbre_precision_']?></dd>
-
 
31
	<dt>Classement</dt> <dd><?=$info['_specimen_type_classement_']?></dd>
-
 
32
</dl>
-
 
33
 
-
 
34
<h3>Couvertures</h3>
-
 
35
<dl>
-
 
36
	<dt>Principe de groupement</dt> <dd><?=$info['_groupement_principe_']?></dd>
-
 
37
	<dt>But du groupement</dt> <dd><?=$info['_groupement_but_']?></dd>
-
 
38
	<dt>Lieux concernés</dt> <dd><?=$info['_couverture_lieu_']?></dd>
-
 
39
</dl>
-
 
40
 
-
 
41
<h3>Divers</h3>
-
 
42
<dl>
-
 
43
	<dt>GUID</dt> <dd><?=$info['cc_guid']?> </dd>
-
 
44
	<dt>Notes</dt> <dd><?=$info['cmhl_notes']?> </dd>
-
 
45
	<dt>Sources</dt> <dd><?=$info['cmhl_source']?> </dd>
-
 
46
	<dt>Modifié par</dt> <dd><?=$info['_modifier_par_']?> </dd>
-
 
47
	<dt>Date de dernière modification</dt> <dd><?=$info['cmhl_date_modification']?> </dd>
-
 
48
	<dt>État de l'enregistrement</dt> <dd><?=$info['_etat_']?> </dd>
-
 
49
</dl>
-
 
50
 
-
 
51
<h2>Personnes</h2>
-
 
52
<h3>Personne(s) liées à la collection</h3>
-
 
53
<?php if (count($personnes) > 0) : ?>
-
 
54
<table>
-
 
55
	<thead>
-
 
56
		<tr>
-
 
57
			<th>Relation</th>
-
 
58
			<th>Nom Complet</th>
-
 
59
			<th>Nom</th>
-
 
60
			<th>Prénom</th>
-
 
61
			<th>Date de naissance</th>
-
 
62
			<th>Lieu de naissance</th>
-
 
63
			<th>Décès</th>
-
 
64
			<th>Date de décès</th>
-
 
65
			<th>Lieu de décès</th>
-
 
66
		</tr>
-
 
67
	</thead>
-
 
68
	<tbody>
-
 
69
	<?php foreach ($personnes as $personne) : ?>
-
 
70
		<tr>
-
 
71
			<td><?=$personne['_role_']?></td>
-
 
72
			<td><?=$personne['cp_fmt_nom_complet']?></td>
-
 
73
			<td><?=$personne['cp_nom']?></td>
-
 
74
			<td><?=$personne['cp_prenom']?></td>
-
 
75
			<td><?=$personne['_naissance_date_']?></td>
-
 
76
			<td><?=$personne['cp_naissance_lieu']?></td>
-
 
77
			<td><?=$personne['_deces_']?></td>
-
 
78
			<td><?=$personne['_deces_date_']?></td>
-
 
79
			<td><?=$personne['cp_deces_lieu']?></td>
-
 
80
		</tr>
-
 
81
	<?php endforeach; ?>
-
 
82
	</tbody>
-
 
83
</table>
-
 
84
<?php else : ?>
-
 
85
<p>Aucune</p>
-
 
86
<?php endif; ?>
-
 
87
<h2>Publications</h2>
-
 
88
<h3>Publication(s) de la collection</h3>
-
 
89
<?php if (count($publications) > 0) : ?>
-
 
90
<table>
-
 
91
	<thead>
-
 
92
		<tr>
-
 
93
			<th>Auteurs</th>
-
 
94
			<th>Titre</th>
-
 
95
			<th>Nom de la revue / collection</th>
-
 
96
			<th>Éditeur</th>
-
 
97
			<th>Année</th>
-
 
98
			<th>Série / Tome</th>
-
 
99
			<th>Fascicule</th>
-
 
100
			<th>Page(s)</th>
-
 
101
		</tr>
-
 
102
	</thead>
-
 
103
	<tbody>
-
 
104
	<?php foreach ($publications as $publication) : ?>
-
 
105
		<tr>
-
 
106
			<td><?=$publication['cpu_fmt_auteur']?></td>
-
 
107
			<td><?=$publication['cpu_titre']?></td>
-
 
108
			<td><?=$publication['cpu_collection']?></td>
-
 
109
			<td><?=$publication['_editeur_']?></td>
-
 
110
			<td><?=$publication['_date_parution_']?></td>
-
 
111
			<td><?=$publication['cpu_indication_nvt']?></td>
-
 
112
			<td><?=$publication['cpu_fascicule']?></td>
-
 
113
			<td><?=$publication['cpu_truk_pages']?></td>
-
 
114
		</tr>
-
 
115
	<?php endforeach; ?>
-
 
116
	</tbody>
-
 
117
</table>
-
 
118
<?php else : ?>
-
 
119
<p>Aucune</p>
-
 
120
<?php endif; ?>
-
 
121
<h2>Description</h2>
-
 
122
<h2>Contenu</h2>
-
 
123
<h2>Inventaire</h2>
-
 
124
<h2>Notes</h2>
-
 
125
3
126