Subversion Repositories eFlore/Applications.coel-consultation

Rev

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

Rev 10 Rev 19
Line 1... Line 1...
1
<div id="col_resultat">
1
<div id="col_resultat">
2
	<?=$fragmenteur;?>
2
	<?=$fragmenteur;?>
-
 
3
	<?php if (isset($infos)) : ?>
3
	<ul>
4
	<ul>
4
	<?php foreach ($infos as $info) : ?>
5
	<?php foreach ($infos as $info) : ?>
5
		<li><?=$info['structure']['ville']?> - <a href="<?=$info['structure']['url']?>"><?=$info['structure']['nom']?></a>
6
		<li><?=$info['structure']['ville']?> - <a href="<?=$info['structure']['url']?>"><?=$info['structure']['nom']?></a>
6
			<ul>
7
			<ul>
7
			<?php foreach ($info['collections'] as $collection) : ?>
8
			<?php foreach ($info['collections'] as $collection) : ?>
Line 9... Line 10...
9
			<?php endforeach; ?>
10
			<?php endforeach; ?>
10
			</ul>
11
			</ul>
11
		</li>
12
		</li>
12
	<?php endforeach; ?>
13
	<?php endforeach; ?>
13
	</ul>
14
	</ul>
-
 
15
	<?php endif; ?>
14
</div>
16
</div>
15
17