Subversion Repositories Applications.referentiel

Rev

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

Rev 33 Rev 178
Line 8... Line 8...
8
		</tr>
8
		</tr>
9
	</thead>
9
	</thead>
10
	<tbody>
10
	<tbody>
11
	<?php foreach ($message['lignes'] as $ligne) : ?>
11
	<?php foreach ($message['lignes'] as $ligne) : ?>
12
		<tr>
12
		<tr>
13
		<?php foreach ($ligne as $info) : ?>
13
		<?php foreach ($ligne as $num => $info) : ?>
-
 
14
			<td>
-
 
15
			<?php if ($message['entete'][$num] == 'num_nom') : ?>
-
 
16
				<a href="{numNom::<?=$info?>}" title="Voir la fiche du nom"><?=$info?></a>
-
 
17
			<?php else : ?>
14
			<td><?=$info?></td>
18
				<?=$info?>
-
 
19
			<?php endif; ?>
-
 
20
			</td>
15
		<?php endforeach; ?>
21
		<?php endforeach; ?>
16
		</tr>
22
		</tr>
17
	<?php endforeach; ?>
23
	<?php endforeach; ?>
18
	</tbody>
24
	</tbody>
19
</table>
25
</table>
20
26