Subversion Repositories eFlore/Applications.coel-consultation

Compare Revisions

Ignore whitespace Rev 15 → Rev 16

/trunk/squelettes/fiche_structure.tpl.html
46,6 → 46,42
</dl>
 
<h2>Personnel</h2>
<dl>
<dt>Personnel des collections</dt> <dd><?=count($personnel)?></dd>
</dl>
<?php if (count($personnel) > 0) : ?>
<h3>Membres du personnel</h3>
<table>
<thead>
<tr>
<th>Fonction</th>
<th>Prénom</th>
<th>Nom</th>
<th>Tél. Fixe / Fax</th>
<th>Courriel principal</th>
<th>Statut</th>
<th>Temps de travail</th>
<th>Spécialité principale</th>
<th>Contact ?</th>
</tr>
</thead>
<tbody>
<?php foreach ($personnel as $personne) : ?>
<tr>
<td><?=$personne['_fonction_']?></td>
<td><?=$personne['cp_prenom']?></td>
<td><?=$personne['cp_nom']?></td>
<td><?=$personne['_tel_fax_']?></td>
<td><?=$personne['_courriel_']?></td>
<td><?=$personne['_statut_']?></td>
<td><?=$personne['csap_bota_travail_hebdo_tps']?></td>
<td><?=$personne['_specialite_']?></td>
<td><?=$personne['_contact_']?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<?php endif; ?>
 
<h2>Conservation</h2>
<h3>Formation du personnel à la conservation</h3>
66,7 → 102,7
<dt>Locaux spécifiques aux collections</dt> <dd><?=$info['_stockage_local_']?></dd>
<dt>Meubles spécifiques aux collections</dt> <dd><?=$info['_stockage_meuble_']?></dd>
<dt>Paramêtres maîtrisés</dt> <dd><?=$info['_stockage_parametre_']?></dd>
<dt>Conservation des collections en commun</dt> <dd><?=$info['_collection_commune_']?> <?=$info['_collection_autre_']?></dd>
<dt>Conservation des collections en commun</dt> <dd><?=$info['_collection_commune_']?> <?=$info['_collection_commune_autre_']?></dd>
<dt>Accès contrôlé</dt> <dd><?=$info['_acces_controle_']?></dd>
</dl>
 
83,6 → 119,28
<?php endif; ?>
</dl>
 
<h2>Valorisation</h2>
<h3>Actions de valorisation</h3>
<dl>
<dt>Réalisation d'actions de valorisation</dt> <dd><?=$info['_action_']?> <?=$info['_action_info_']?></dd>
<dt>Publications</dt> <dd><?=$info['csv_publication']?></dd>
<dt>Autres collections</dt> <dd><?=$info['_collection_autre_']?></dd>
<dt>Futures actions de valorisation</dt> <dd><?=$info['_action_future_']?> <?=$info['_action_future_info_']?></dd>
</dl>
 
<h2>Valorisation</h2>
<h3>Accès & Usages</h3>
<dl>
<dt>Condition de visite</dt> <dd><?=$info['_visite_avec_motif_']?> <?=$info['_visite_avec_motif_info_']?></dd>
<dt>Condition d'accès</dt> <dd><?=$info['_acces_ss_motif_']?> <?=$info['_acces_ss_motif_info_']?></dd>
</dl>
 
<h3>Recherches scientifiques</h3>
<dl>
<dt>Utilisation pour la recherche</dt> <dd><?=$info['_recherche_']?></dd>
<?php if ($info['csv_mark_recherche'] == '1') : ?>
<dt>Provenance des chercheurs</dt> <dd><?=$info['_recherche_provenance_']?></dd>
<dt>Type de recherche</dt> <dd><?=$info['_recherche_type_']?></dd>
<?php endif; ?>
</dl>
<hr />
<!-- FIN FICHE STRUCTURE -->