Subversion Repositories eFlore/Applications.coel-consultation

Rev

Rev 17 | Rev 19 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
17 jpm 1
<h1><?=$info['cc_nom']?> <span class="discretion">(id:<?=$id?>)</span></h1>
2
<dl>
18 jpm 3
	<dt>Structure</dt> <dd><a href="<?=$info['_structure_url_']?>"><?=$info['_structure_nom_']?></a></dd>
17 jpm 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; ?>
18 jpm 87
 
17 jpm 88
<h2>Publications</h2>
89
<h3>Publication(s) de la collection</h3>
90
<?php if (count($publications) > 0) : ?>
91
<table>
92
	<thead>
93
		<tr>
94
			<th>Auteurs</th>
95
			<th>Titre</th>
96
			<th>Nom de la revue / collection</th>
97
			<th>Éditeur</th>
98
			<th>Année</th>
99
			<th>Série / Tome</th>
100
			<th>Fascicule</th>
101
			<th>Page(s)</th>
102
		</tr>
103
	</thead>
104
	<tbody>
105
	<?php foreach ($publications as $publication) : ?>
106
		<tr>
107
			<td><?=$publication['cpu_fmt_auteur']?></td>
108
			<td><?=$publication['cpu_titre']?></td>
109
			<td><?=$publication['cpu_collection']?></td>
110
			<td><?=$publication['_editeur_']?></td>
111
			<td><?=$publication['_date_parution_']?></td>
112
			<td><?=$publication['cpu_indication_nvt']?></td>
113
			<td><?=$publication['cpu_fascicule']?></td>
114
			<td><?=$publication['cpu_truk_pages']?></td>
115
		</tr>
116
	<?php endforeach; ?>
117
	</tbody>
118
</table>
119
<?php else : ?>
120
<p>Aucune</p>
121
<?php endif; ?>
18 jpm 122
 
17 jpm 123
<h2>Description</h2>
18 jpm 124
<h3>Description et état de la collection</h3>
125
<dl>
126
	<dt>Type d'herbier</dt> <dd><?=$info['_type_']?></dd>
127
	<dt>Nombre de cartons ou liasses échantillonnés</dt> <dd><?=$info['ccb_nbre_echantillon']?></dd>
128
</dl>
129
 
130
<h3>Types d'unité de rangement de la collection botanique</h3>
131
<dl>
132
	<dt>État général</dt> <dd><?=$info['_unite_rangement_etat_']?></dd>
133
</dl>
134
<?php if (count($info['_rangements_']) > 0) : ?>
135
<table>
136
	<thead>
137
		<tr>
138
			<th>Type</th>
139
			<th>Nombre</th>
140
			<th>Précision</th>
141
			<th>Format</th>
142
		</tr>
143
	</thead>
144
	<tbody>
145
	<?php foreach ($info['_rangements_'] as $rangement) : ?>
146
		<tr>
147
			<td><?=$rangement['type']?></td>
148
			<td><?=$rangement['nbre']?></td>
149
			<td><?=$rangement['precision']?></td>
150
			<td><?=$rangement['format']?></td>
151
		</tr>
152
	<?php endforeach; ?>
153
	</tbody>
154
</table>
155
<?php else : ?>
156
<p>Aucune unité de rangement n'a été renseignée.</p>
157
<?php endif; ?>
158
 
159
<h3>Types d'unité de base de la collection si différent de l'untité de rangement</h3>
160
<?php if (count($info['_unites_base_']) > 0) : ?>
161
<table>
162
	<thead>
163
		<tr>
164
			<th colspan="4">Unité de base</th>
165
			<th colspan="2">Parts</th>
166
			<th colspan="2">Espèces</th>
167
		</tr>
168
		<tr>
169
			<th>Type</th>
170
			<th>Nombre</th>
171
			<th>Précision</th>
172
			<th>Format</th>
173
			<th>Nombre</th>
174
			<th>Précision</th>
175
			<th>Nombre</th>
176
			<th>Précision</th>
177
		</tr>
178
	</thead>
179
	<tbody>
180
	<?php foreach ($info['_unites_base_'] as $unite_base) : ?>
181
		<tr>
182
			<td><?=$unite_base['type']?></td>
183
			<td><?=$unite_base['nbre']?></td>
184
			<td><?=$unite_base['precision']?></td>
185
			<td><?=$unite_base['format']?></td>
186
			<td><?=$unite_base['part_nbre']?></td>
187
			<td><?=$unite_base['part_precision']?></td>
188
			<td><?=$unite_base['sp_nbre']?></td>
189
			<td><?=$unite_base['sp_precision']?></td>
190
		</tr>
191
	<?php endforeach; ?>
192
	</tbody>
193
</table>
194
<?php else : ?>
195
<p>Aucune unité de base n'a été renseignée.</p>
196
<?php endif; ?>
197
 
198
<h3>Conservation</h3>
199
<dl>
200
	<dt>Type de papier</dt> <dd><?=$info['']?></dd>
201
	<dt>Méthode</dt> <dd><?=$info['']?></dd>
202
</dl>
203
 
204
<h3>Étiquettes</h3>
205
<dl>
206
	<dt>% de spécimen fixés</dt> <dd><?=$info['']?></dd>
207
	<dt>% d'étiquettes fixées</dt> <dd><?=$info['']?></dd>
208
	<dt>Méthode de fixation du spécimen</dt> <dd><?=$info['']?></dd>
209
	<dt>Méthode de fixation des étiquettes au support</dt> <dd><?=$info['']?></dd>
210
	<dt>Méthode de fixation des étiquettes au spécimen</dt> <dd><?=$info['']?></dd>
211
	<dt>Type d'écriture des étiquettes</dt> <dd><?=$info['']?></dd>
212
</dl>
213
 
214
<h3>Traitements</h3>
215
<dl>
216
	<dt>Traitement</dt> <dd><?=$info['']?></dd>
217
	<dt>Empoisonnement</dt> <dd><?=$info['']?></dd>
218
	<dt>Pesticide</dt> <dd><?=$info['']?></dd>
219
</dl>
220
 
221
<h3>État général et dégradation</h3>
222
<dl>
223
	<dt>État général</dt> <dd><?=$info['']?></dd>
224
	<dt>Causes de dégradation des spécimens</dt> <dd><?=$info['']?></dd>
225
	<dt>Causes de dégradation de la présentation</dt> <dd><?=$info['']?></dd>
226
	<dt>Détermination des échantillons</dt> <dd><?=$info['']?></dd>
227
</dl>
228
 
17 jpm 229
<h2>Contenu</h2>
18 jpm 230
<h3>Nature</h3>
231
<dl>
232
	<dt>Nature de la collection</dt> <dd><?=$info['']?></dd>
233
	<dt>Collection spécialisée</dt> <dd><?=$info['']?></dd>
234
</dl>
235
 
236
<h3>Période de constitution</h3>
237
<dl>
238
	<dt>Période de constitution</dt> <dd><?=$info['']?></dd>
239
	<dt>Date de DÉBUT de récolte</dt> <dd><?=$info['']?></dd>
240
	<dt>Date de FIN de récolte</dt> <dd><?=$info['']?></dd>
241
</dl>
242
 
243
<h3>Classement</h3>
244
<dl>
245
	<dt>État du classement</dt> <dd><?=$info['']?></dd>
246
	<dt>Principe de classement</dt> <dd><?=$info['']?></dd>
247
</dl>
248
 
249
<h3>Étiquette</h3>
250
<dl>
251
	<dt>Renseignements</dt> <dd><?=$info['']?></dd>
252
	<dt>Localités précises</dt> <dd><?=$info['']?></dd>
253
	<dt>Dates précises</dt> <dd><?=$info['']?></dd>
254
	<dt>Annotations</dt> <dd><?=$info['']?></dd>
255
</dl>
256
 
257
<h3>Collections intégrées</h3>
258
<dl>
259
	<dt>Intégration de collection antérieures</dt> <dd><?=$info['']?></dd>
260
	<dt>Nom de la collection sur les étiquettes</dt> <dd><?=$info['']?></dd>
261
</dl>
262
 
17 jpm 263
<h2>Inventaire</h2>
18 jpm 264
<h3>Inventaire (autre que celui de l'auteur)</h3>
265
<dl>
266
	<dt>Existence inventaire</dt> <dd><?=$info['']?></dd>
267
	<dt>Participation de l'auteur</dt> <dd><?=$info['']?></dd>
268
	<dt>Forme de l'inventaire</dt> <dd><?=$info['']?></dd>
269
	<dt>Informations disponibles</dt> <dd><?=$info['']?></dd>
270
	<dt>Logiciel utilisé</dt> <dd><?=$info['']?></dd>
271
	<dt>% en base de données</dt> <dd><?=$info['']?></dd>
272
	<dt>État inventaire</dt> <dd><?=$info['']?></dd>
273
</dl>
274
 
275
<h2>Notes</h2>
276
<h3>Notes liées à la collection</h3>
277
<?php if (count($notes) > 0) : ?>
278
<table>
279
	<thead>
280
		<tr>
281
			<th>Type</th>
282
			<th>Titre</th>
283
			<th>Importance</th>
284
			<th>Accès</th>
285
		</tr>
286
	</thead>
287
	<tbody>
288
	<?php foreach ($notes as $note) : ?>
289
		<tr>
290
			<td><?=$note['']?></td>
291
			<td><?=$note['']?></td>
292
			<td><?=$note['']?></td>
293
			<td><?=$note['']?></td>
294
		</tr>
295
		<tr>
296
			<td colspan="4"><?=$note['']?></td>
297
		</tr>
298
	<?php endforeach; ?>
299
	</tbody>
300
</table>
301
<?php else : ?>
302
<p>Aucune note n'a été ajoutée.</p>
303
<?php endif; ?>