Subversion Repositories eFlore/Applications.coel-consultation

Rev

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

Rev 99 Rev 118
Line 70... Line 70...
70
		<h3>Membres du personnel</h3>
70
		<h3>Membres du personnel</h3>
71
		<table>
71
		<table>
72
			<thead>
72
			<thead>
73
				<tr>
73
				<tr>
74
					<th>Fonction</th>
74
					<th>Fonction</th>
-
 
75
					<th>Nom Complet</th>
75
					<th>Prénom</th>
76
					<th>Prénom</th>
76
					<th>Nom</th>
77
					<th>Nom</th>
77
					<th>Tél. Fixe / Fax</th>
78
					<th>Tél. Fixe / Fax</th>
78
					<th>Courriel principal</th>
79
					<th>Courriel principal</th>
79
					<th>Statut</th>
80
					<th>Statut</th>
Line 84... Line 85...
84
			</thead>
85
			</thead>
85
			<tbody>
86
			<tbody>
86
			<?php foreach ($personnel as $personne) : ?>
87
			<?php foreach ($personnel as $personne) : ?>
87
				<tr>
88
				<tr>
88
					<td><?=$personne['_fonction_']?></td>
89
					<td><?=$personne['_fonction_']?></td>
-
 
90
					<td><a href="<?=$personne['_url_']?>" title="Accèder à la fiche de la personne"><?=$personne['cp_fmt_nom_complet']?></a></td>
89
					<td><?=$personne['cp_prenom']?></td>
91
					<td><?=$personne['cp_prenom']?></td>
90
					<td><?=$personne['cp_nom']?></td>
92
					<td><?=$personne['cp_nom']?></td>
91
					<td><?=$personne['_tel_fax_']?></td>
93
					<td><?=$personne['_tel_fax_']?></td>
92
					<td><?=$personne['_courriel_']?></td>
94
					<td><?=$personne['_courriel_']?></td>
93
					<td><?=$personne['_statut_']?></td>
95
					<td><?=$personne['_statut_']?></td>
Line 171... Line 173...
171
		<h2 id="col-str-titre-collection">Collections</h2>
173
		<h2 id="col-str-titre-collection">Collections</h2>
172
		<h3>Collections liées à cette institution</h3>
174
		<h3>Collections liées à cette institution</h3>
173
		<?php if (count($collections) > 0) : ?>
175
		<?php if (count($collections) > 0) : ?>
174
		<ul>
176
		<ul>
175
		<?php foreach ($collections as $collection) : ?>
177
		<?php foreach ($collections as $collection) : ?>
176
			<li><a href="<?=$collection['_url_']?>"><?=$collection['cc_nom']?></a></li>
178
			<li><a href="<?=$collection['_url_']?>" title="Accèder à la fiche de la collection"><?=$collection['cc_nom']?></a></li>
177
		<?php endforeach; ?>
179
		<?php endforeach; ?>
178
		</ul>
180
		</ul>
179
		<?php endif; ?>
181
		<?php endif; ?>
180
	</div>
182
	</div>