431 |
mathias |
1 |
<h1>Liste des projets et forums de Tela Botanica</h1>
|
|
|
2 |
<div id="projet_choix_mode"><?= $lien_interface_simple; ?> <?= $lien_interface_expert; ?></div>
|
|
|
3 |
<div class="projet_recherche"><h2>Rechercher dans les projets</h2>
|
|
|
4 |
<form action="<?= $url; ?>" method="get">
|
|
|
5 |
<fieldset>
|
|
|
6 |
<input type="text" name="projet_recherche" id="projet_recherche" value="<?= $valeur_projet_recherche; ?>" />
|
|
|
7 |
<input type="submit" value="Ok" id="projet_recherche_submit" />
|
|
|
8 |
</fieldset>
|
|
|
9 |
</form>
|
|
|
10 |
</div>
|
|
|
11 |
<hr />
|
|
|
12 |
<div class="information_projet importance4">
|
|
|
13 |
<h2>Qu'est-ce qu'un projet ?</h2>
|
|
|
14 |
C'est un espace où l'on peut échanger sur une thématique liée à la botanique.
|
|
|
15 |
Vous disposez dans cet espace de divers outils.
|
|
|
16 |
<ul>
|
|
|
17 |
<li><a href="http://www.tela-botanica.org/page:informations_sur_les_projets#infoprojets_utiliser" title="Lien vers l'aide pour utiliser les outils">une liste de discussion (forum)</a></li>
|
|
|
18 |
<li><a href="http://www.tela-botanica.org/page:informations_sur_les_projets#infoprojets_utiliser" title="Lien vers l'aide pour utiliser les outils">un wikini</a></li>
|
|
|
19 |
<li><a href="http://www.tela-botanica.org/page:informations_sur_les_projets#infoprojets_utiliser" title="Lien vers l'aide pour utiliser les outils">un espace document</a></li>
|
|
|
20 |
</ul>
|
|
|
21 |
</div>
|
|
|
22 |
<div id="cartouche_liste_projet">
|
|
|
23 |
<div id="projet_range">Projets <span class="nombre"><?= $range[0]; ?></span> à <span class="nombre"><?= $range[1]; ?></span> sur <span class="nombre"><?= $nombre_projets; ?></span></div>
|
|
|
24 |
|
|
|
25 |
</div>
|
|
|
26 |
<div id="projet_theme">
|
|
|
27 |
<h1>Thèmes - <?= $tableau_theme[$theme_selectionne]['label']; ?></h1>
|
|
|
28 |
<ul>
|
|
|
29 |
<?php foreach ($tableau_theme as $theme) : ?>
|
|
|
30 |
<li><?php if ($theme['id'] == $theme_selectionne) : ?><strong><?php endif; ?>
|
|
|
31 |
<a href="<?= $theme['lien']; ?>"><?= $theme['label']; ?></a>
|
|
|
32 |
<?php if ($theme['id'] == $theme_selectionne) : ?></strong><?php endif; ?>
|
|
|
33 |
( <?= $theme['nombre_projet']; ?> )</li>
|
|
|
34 |
<?php endforeach ;?>
|
|
|
35 |
</ul>
|
|
|
36 |
</div>
|
|
|
37 |
<div class="pager"><?= $links['all']; ?></div>
|
|
|
38 |
<ul class="liste_projet">
|
|
|
39 |
<?php foreach ($tableau_donnees as $projet) : ?>
|
|
|
40 |
<li>
|
|
|
41 |
<h3><a href="<?= $projet['lien'] ;?>"><?= $projet['titre']; ?></a></h3>
|
|
|
42 |
<h4>(<?= $projet['nombre_participants']; ?> participants) <span class="<?= $projet['classe_projet_activite']; ?>">(<?= $projet['activite']; ?>)</span></h4>
|
|
|
43 |
<?= $projet['resume']; ?>
|
|
|
44 |
<?= $projet['forum'] ; ?>
|
|
|
45 |
<?php if ($projet['nombre_message']) : ?>
|
|
|
46 |
( + <span class="nombre_message"><?php echo $projet['nombre_message']; ?> nouveaux messages</span> )
|
|
|
47 |
<?php endif; ?>
|
|
|
48 |
</li>
|
|
|
49 |
<?php endforeach ; ?>
|
|
|
50 |
</ul>
|
293 |
alexandre_ |
51 |
<div class="pager"><?= $links['all']; ?></div>
|