33 |
jpm |
1 |
<!-- DEBUT FORM_NOM -->
|
|
|
2 |
<form id="ef-form-nomenclature" name="ef-form-nomenclature" action="<?=$url_form;?>" method="get">
|
|
|
3 |
<fieldset>
|
|
|
4 |
<legend><?=$i18n['legende'];?></legend>
|
|
|
5 |
<table>
|
|
|
6 |
<tr>
|
|
|
7 |
<td>
|
43 |
delphine |
8 |
<label for="eflore_nom"><?=($eflore_type_nom == 'nom_scientifique') ? $i18n['ns'] : $i18n['nv'];?></label>
|
|
|
9 |
<input id="eflore_nom" name="eflore_nom" class="champ" size="30" maxlength="255" type="text" autocomplete="off" />
|
33 |
jpm |
10 |
</td>
|
|
|
11 |
<td>
|
|
|
12 |
<ul>
|
|
|
13 |
<li>
|
|
|
14 |
<input id="eflore_type_nom_scientifique" name="eflore_type_nom" value="nom_scientifique" type="radio" <?=($eflore_type_nom == 'nom_scientifique') ? 'checked="checked"': '';?> />
|
43 |
delphine |
15 |
<label for="eflore_type_nom_scientifique"><?=$i18n['ns'];?></label>
|
33 |
jpm |
16 |
</li>
|
|
|
17 |
<li>
|
|
|
18 |
<input id="eflore_type_nom_vernaculaire" name="eflore_type_nom" value="nom_vernaculaire" type="radio" <?=($eflore_type_nom == 'nom_vernaculaire') ? 'checked="checked"': '';?> />
|
43 |
delphine |
19 |
<label for="eflore_type_nom_vernaculaire" title="(en fran�ais, allemand, anglais, catalan, espagnol, italien ou n�erlandais)"><?=$i18n['nv'];?></label>
|
33 |
jpm |
20 |
</li>
|
|
|
21 |
</ul>
|
|
|
22 |
</td>
|
|
|
23 |
<td>
|
43 |
delphine |
24 |
<input id="module" name="module" type="hidden" value="recherche-simple" />
|
|
|
25 |
<input id="action" name="action" type="hidden" value="rechercheNom" />
|
|
|
26 |
<input id="eflore_nomenclature_submit" type="submit" value="<?=$i18n['recherche'];?>" />
|
33 |
jpm |
27 |
</td>
|
|
|
28 |
</tr>
|
|
|
29 |
</table>
|
|
|
30 |
</fieldset>
|
|
|
31 |
</form>
|
43 |
delphine |
32 |
|
|
|
33 |
<?php if (isset($nom_approche)) : ?>
|
33 |
jpm |
34 |
<p id="efr-ortho-approche"> <span class="erreur"><?=$i18n['orthographe'];?></span><a href="<?=$nom_approche_url;?>"><?=$nom_approche;?></a></p>
|
|
|
35 |
<?php endif; ?>
|
43 |
delphine |
36 |
<?php if (isset($information)) : ?>
|
|
|
37 |
<p id="information"><?=$information?></p>
|
|
|
38 |
<?php endif; ?>
|
33 |
jpm |
39 |
<!-- FIN FORM_NOM -->
|