Subversion Repositories eFlore/Applications.coel-consultation

Rev

Rev 55 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<!-- COL - DEBUT FICHE COLLECTION -->
<script type="text/javascript">
        $(function() {
                $("#col-col").tabs();
        });
</script>
<h1><?=$info['cc_nom']?> <span class="discretion">(id:<?=$id?>)</span></h1>
<dl>
        <dt>Structure</dt> <dd><a href="<?=$info['_structure_url_']?>"><?=$info['_structure_nom_']?></a></dd>
        <dt>Ville</dt> <dd><?=$info['_structure_ville_']?></dd>
</dl>
<hr class="nettoyeur"/>
<div id="col-col" class="col-onglets">
        <ul class="col-sommaire">
                <li><a href="#col-col-general">Général</a></li>
                <li><a href="#col-col-personne">Personnes</a></li>
                <li><a href="#col-col-publication">Publications</a></li>
                <li><a href="#col-col-description">Description</a></li>
                <li><a href="#col-col-contenu">Contenu</a></li>
                <li><a href="#col-col-inventaire">Inventaire</a></li>
                <li><a href="#col-col-note">Notes</a></li>
                <li><a href="#col-col-meta">Méta-données</a></li>
        </ul>
        
        <div id="col-col-general">
                <h2>Général</h2>
                <h3>Renseignements administratifs</h3>
                <dl>
                        <dt>Autres intitulés</dt> <dd><?=$info['_nom_alternatif_']?></dd>
                        <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>
                        <dt>Type de collection</dt> <dd><?=$info['_type_ncd_']?></dd>
                        <dt>Statut</dt> <dd><?=$info['_type_depot_']?></dd>
                        <dt>Identifiants alternatifs</dt> <dd><?=$info['_identifiant_alternatif_']?></dd>
                        <dt>Acronymes</dt> <dd><?=$info['_code_']?></dd>
                        <dt>Cote</dt> <dd><?=$info['cc_cote']?></dd>
                </dl>
                
                <h3>Statut, intitulés et codes</h3>
                <dl>
                        <dt>Description</dt> <dd class="txt-long"><?=$info['cc_description']?></dd>
                        <dt>Description spécialiste</dt> <dd class="txt-long"><?=$info['cc_description_specialiste']?></dd>
                        <dt>Historique</dt> <dd class="txt-long"><?=$info['cc_historique']?></dd>
                        <dt>Site web</dt> <dd><?=$info['_url_']?></dd>
                </dl>
                
                <h3>Spécimens «types»</h3>
                <dl>
                        <dt>Présence</dt> <dd><?=$info['_specimen_type_']?></dd>
                        <dt>Nombre</dt> <dd><?=$info['cc_specimen_type_nbre']?> <?=$info['_specimen_type_nbre_precision_']?></dd>
                        <dt>Classement</dt> <dd><?=$info['_specimen_type_classement_']?></dd>
                </dl>
                
                <h3>Couvertures</h3>
                <dl>
                        <dt>Principe de groupement</dt> <dd><?=$info['_groupement_principe_']?></dd>
                        <dt>But du groupement</dt> <dd><?=$info['_groupement_but_']?></dd>
                        <dt>Lieux concernés</dt> <dd><?=$info['_couverture_lieu_']?></dd>
                </dl>
                <hr class="nettoyeur"/>
        </div>

        <div id="col-col-personne">
                <h2>Personnes</h2>
                <h3>Personne(s) liées à la collection</h3>
                <?php if (count($personnes) > 0) : ?>
                <table>
                        <thead>
                                <tr>
                                        <th>Relation</th>
                                        <th>Nom Complet</th>
                                        <th>Nom</th>
                                        <th>Prénom</th>
                                        <th>Date de naissance</th>
                                        <th>Lieu de naissance</th>
                                        <th>Décès</th>
                                        <th>Date de décès</th>
                                        <th>Lieu de décès</th>
                                </tr>
                        </thead>
                        <tbody>
                        <?php foreach ($personnes as $personne) : ?>
                                <tr>
                                        <td><?=$personne['_role_']?></td>
                                        <td><a href="<?=$personne['_url_']?>" title="Accèder à la fiche de la personne"><?=$personne['cp_fmt_nom_complet']?></a></td>
                                        <td><?=$personne['cp_nom']?></td>
                                        <td><?=$personne['cp_prenom']?></td>
                                        <td><?=$personne['_naissance_date_']?></td>
                                        <td><?=$personne['cp_naissance_lieu']?></td>
                                        <td><?=$personne['_deces_']?></td>
                                        <td><?=$personne['_deces_date_']?></td>
                                        <td><?=$personne['cp_deces_lieu']?></td>
                                </tr>
                        <?php endforeach; ?>
                        </tbody>
                </table>
                <?php else : ?>
                <p>Aucune</p>
                <?php endif; ?>
        </div>
        
        <div id="col-col-publication">
                <h2>Publications</h2>
                <h3>Publication(s) de la collection</h3>
                <?php if (count($publications) > 0) : ?>
                <table>
                        <thead>
                                <tr>
                                        <th>Auteurs</th>
                                        <th>Titre</th>
                                        <th>Nom de la revue / collection</th>
                                        <th>Éditeur</th>
                                        <th>Année</th>
                                        <th>Série / Tome</th>
                                        <th>Fascicule</th>
                                        <th>Page(s)</th>
                                </tr>
                        </thead>
                        <tbody>
                        <?php foreach ($publications as $publication) : ?>
                                <tr>
                                        <td><?=$publication['cpu_fmt_auteur']?></td>
                                        <td><?=$publication['cpu_titre']?></td>
                                        <td><?=$publication['cpu_collection']?></td>
                                        <td><?=$publication['_editeur_']?></td>
                                        <td><?=$publication['_date_parution_']?></td>
                                        <td><?=$publication['cpu_indication_nvt']?></td>
                                        <td><?=$publication['cpu_fascicule']?></td>
                                        <td><?=$publication['cpu_truk_pages']?></td>
                                </tr>
                        <?php endforeach; ?>
                        </tbody>
                </table>
                <?php else : ?>
                <p>Aucune</p>
                <?php endif; ?>
        </div>

        <div id="col-col-description">
                <h2>Description</h2>
                <h3>Description et état de la collection</h3>
                <dl class="label-grand">
                        <dt>Type d'herbier</dt> <dd><?=$info['_type_']?></dd>
                        <dt>Nombre de cartons ou liasses échantillonnés</dt> <dd><?=$info['ccb_nbre_echantillon']?></dd>
                </dl>
                
                <h3>Types d'unité de rangement de la collection botanique</h3>
                <dl class="label-court">
                        <dt>État général</dt> <dd><?=$info['_unite_rangement_etat_']?></dd>
                </dl>
                <hr class="nettoyeur"/>
                <?php if (count($info['_rangements_']) > 0) : ?>
                <table>
                        <thead>
                                <tr>
                                        <th>Type</th>
                                        <th>Nombre</th>
                                        <th>Précision</th>
                                        <th>Format</th>
                                </tr>
                        </thead>
                        <tbody>
                        <?php foreach ($info['_rangements_'] as $rangement) : ?>
                                <tr>
                                        <td><?=$rangement['type']?></td>
                                        <td><?=$rangement['nbre']?></td>
                                        <td><?=$rangement['precision']?></td>
                                        <td><?=$rangement['format']?></td>
                                </tr>
                        <?php endforeach; ?>
                        </tbody>
                </table>
                <?php else : ?>
                <p>Aucune unité de rangement n'a été renseignée.</p>
                <?php endif; ?>
                
                <h3>Types d'unité de base de la collection si différent de l'untité de rangement</h3>
                <?php if (count($info['_unites_base_']) > 0) : ?>
                <table>
                        <thead>
                                <tr>
                                        <th colspan="4">Unité de base</th>
                                        <th colspan="2">Parts</th>
                                        <th colspan="2">Espèces</th>
                                </tr>
                                <tr>
                                        <th>Type</th>
                                        <th>Nombre</th>
                                        <th>Précision</th>
                                        <th>Format</th>
                                        <th>Nombre</th>
                                        <th>Précision</th>
                                        <th>Nombre</th>
                                        <th>Précision</th>
                                </tr>
                        </thead>
                        <tbody>
                        <?php foreach ($info['_unites_base_'] as $unite_base) : ?>
                                <tr>
                                        <td><?=$unite_base['type']?></td>
                                        <td><?=$unite_base['nbre']?></td>
                                        <td><?=$unite_base['precision']?></td>
                                        <td><?=$unite_base['format']?></td>
                                        <td><?=$unite_base['part_nbre']?></td>
                                        <td><?=$unite_base['part_precision']?></td>
                                        <td><?=$unite_base['sp_nbre']?></td>
                                        <td><?=$unite_base['sp_precision']?></td>
                                </tr>
                        <?php endforeach; ?>
                        </tbody>
                </table>
                <?php else : ?>
                <p>Aucune unité de base n'a été renseignée.</p>
                <?php endif; ?>
                
                <h3>Conservation</h3>
                <dl>
                        <dt>Type de papier</dt> <dd><?=$info['_conservation_papier_type_']?></dd>
                        <dt>Méthode</dt> <dd><?=$info['_conservation_methode_']?></dd>
                </dl>
                
                <h3>Étiquettes</h3>
                <dl class="label-grand">
                        <dt>% de spécimen fixés</dt> <dd><?=$info['ccb_specimen_fixation_pourcent']?>%</dd>
                        <dt>% d'étiquettes fixées</dt> <dd><?=$info['ccb_etiquette_fixation_pourcent']?>%</dd>
                        <dt>Méthode de fixation du spécimen</dt> <dd><?=$info['_specimen_fixation_methode_']?></dd>
                        <dt>Méthode de fixation des étiquettes au support</dt> <dd><?=$info['_etiquette_fixation_support_']?></dd>
                        <dt>Méthode de fixation des étiquettes au spécimen</dt> <dd><?=$info['_etiquette_fixation_specimen_']?></dd>
                        <dt>Type d'écriture des étiquettes</dt> <dd><?=$info['_etiquette_ecriture_']?></dd>
                </dl>
                
                <h3>Traitements</h3>
                <dl>
                        <dt>Traitement</dt> <dd><?=$info['_traitement_']?></dd>
                        <dt>Empoisonnement</dt> <dd><?=$info['_traitement_poison_']?></dd>
                        <dt>Pesticide</dt> <dd><?=$info['_traitement_insecte_']?></dd>
                </dl>
                
                <h3>État général et dégradation</h3>
                <dl class="label-grand">
                        <dt>État général</dt> <dd><?=$info['_etat_general_']?></dd>
                        <dt>Causes de dégradation des spécimens</dt> <dd><?=$info['_degradation_specimen_']?></dd>
                        <dt>Causes de dégradation de la présentation</dt> <dd><?=$info['_degradation_presentation_']?></dd>
                        <dt>Détermination des échantillons</dt> <dd><?=$info['_determination_']?></dd>
                </dl>
                <hr class="nettoyeur"/>
        </div>

        <div id="col-col-contenu">
                <h2>Contenu</h2>
                <h3>Nature</h3>
                <dl>
                        <dt>Nature de la collection</dt> <dd><?=$info['_nature_']?></dd>
                        <dt>Collection spécialisée</dt> <dd><?=$info['ccb_specialite']?></dd>
                </dl>
                
                <h3>Période de constitution</h3>
                <dl>
                        <dt>Période de constitution</dt> <dd><?=$info['_periode_constitution_']?></dd>
                        <dt>Date de DÉBUT de récolte</dt> <dd><?=$info['ccb_recolte_date_debut']?> <?=$info['_recolte_date_debut_type_']?></dd>
                        <dt>Date de FIN de récolte</dt> <dd><?=$info['ccb_recolte_date_fin']?> <?=$info['_recolte_date_fin_type_']?></dd>
                </dl>
                
                <h3>Classement</h3>
                <dl>
                        <dt>État du classement</dt> <dd><?=$info['_classement_etat_']?></dd>
                        <dt>Principe de classement</dt> <dd><?=$info['ccb_annotation_classement']?></dd>
                </dl>
                
                <h3>Étiquette</h3>
                <dl>
                        <dt>Renseignements</dt> <dd><?=$info['_etiquette_renseignement_']?></dd>
                        <dt>Localités précises</dt> <dd><?=$info['_precision_localite_']?></dd>
                        <dt>Dates précises</dt> <dd><?=$info['_precision_date_']?></dd>
                        <dt>Annotations</dt> <dd><?=$info['ccb_annotation_diverse']?></dd>
                </dl>
                
                <h3>Collections intégrées</h3>
                <dl class="label-grand">
                        <dt>Intégration de collection antérieures</dt> <dd><?=$info['_collection_integre_']?></dd>
                        <dt>Nom de la collection sur les étiquettes</dt> <dd><?=$info['_collection_integre_info_']?></dd>
                </dl>
                <hr class="nettoyeur"/>
        </div>

        <div id="col-col-inventaire">
                <h2>Inventaire</h2>
                <h3>Inventaire (autre que celui de l'auteur)</h3>
                <dl>
                        <dt>Existence inventaire</dt> <dd><?=$info['_inventaire_']?></dd>
                        <dt>Participation de l'auteur</dt> <dd><?=$info['_inventaire_auteur_']?></dd>
                        <dt>Forme de l'inventaire</dt> <dd><?=$info['_inventaire_forme_']?></dd>
                        <dt>Informations disponibles</dt> <dd><?=$info['ccb_inventaire_info']?></dd>
                        <dt>Logiciel utilisé</dt> <dd><?=$info['_inventaire_digital_']?></dd>
                        <dt>% en base de données</dt> <dd><?=$info['ccb_inventaire_digital_pourcent']?>%</dd>
                        <dt>État inventaire</dt> <dd><?=$info['_inventaire_etat_']?></dd>
                </dl>
                <hr class="nettoyeur"/>
        </div>

        <div id="col-col-note">
                <h2>Notes</h2>
                <h3>Notes liées à la collection</h3>
                <?php if (count($commentaires) > 0) : ?>
                <table>
                        <thead>
                                <tr>
                                        <th>Type</th>
                                        <th>Titre</th>
                                        <th>Importance</th>
                                </tr>
                        </thead>
                        <tbody>
                        <?php foreach ($commentaires as $commentaire) : ?>
                                <tr>
                                        <td><?=$commentaire['_type_']?></td>
                                        <td><?=$commentaire['ccm_titre']?></td>
                                        <td><?=$commentaire['ccm_ponderation']?></td>
                                </tr>
                                <tr>
                                        <td colspan="3"><?=$commentaire['ccm_texte']?></td>
                                </tr>
                        <?php endforeach; ?>
                        </tbody>
                </table>
                <?php else : ?>
                <p>Aucune note n'a été ajoutée.</p>
                <?php endif; ?>
        </div>
        
        <div id="col-col-meta">
                <h2>Méta-données</h2>
                <dl>
                        <dt>GUID</dt> <dd><?=$info['_guid_']?> </dd>
                        <dt>Notes</dt> <dd><?=$info['cmhl_notes']?> </dd>
                        <dt>Sources</dt> <dd><?=$info['cmhl_source']?> </dd>
                        <dt>Modifié par</dt> <dd><?=$info['_modifier_par_']?> </dd>
                        <dt>Date de dernière modification</dt> <dd><?=$info['cmhl_date_modification']?> </dd>
                        <dt>État de l'enregistrement</dt> <dd><?=$info['_etat_']?> </dd>
                </dl>
                <hr class="nettoyeur"/>
        </div>
        
</div>
<!-- COL - FIN FICHE COLLECTION -->