Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 54 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
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>
56 delphine 8
					<label for="nom"><?=$i18n['nom'];?></label>
9
				</td><td>
33 jpm 10
					<ul>
11
						<li>
56 delphine 12
							<input id="type_nom_scientifique" name="type_nom" value="nom_scientifique" type="radio" <?=($type_nom == 'nom_scientifique') ? 'checked="checked"': '';?> />
13
							<label for="type_nom_scientifique"><?=$i18n['ns'];?></label>
33 jpm 14
						</li>
15
						<li>
56 delphine 16
							<input id="type_nom_vernaculaire" name="type_nom" value="nom_vernaculaire" type="radio" <?=($type_nom == 'nom_vernaculaire') ? 'checked="checked"': '';?> />
17
							<label for="type_nom_vernaculaire" title="(en fran�ais, allemand, anglais, catalan, espagnol, italien ou n�erlandais)"><?=$i18n['nv'];?></label>
33 jpm 18
						</li>
19
					</ul>
56 delphine 20
				</td><td>
21
					<input id="nom" name="nom" class="champ" size="30" maxlength="255" type="text" autocomplete="off" <?php if(isset($nom)) echo 'value="'.$nom.'"';?> />
33 jpm 22
				</td>
56 delphine 23
 
33 jpm 24
				<td>
53 delphine 25
					<input id="referentiel" name="referentiel" type="hidden" value="<?=Registre::get('parametres.referentiel')?>" />
43 delphine 26
					<input id="module" name="module" type="hidden" value="recherche-simple" />
56 delphine 27
					<input id="action" name="action" type="hidden" value="rechercheNom" />
43 delphine 28
					<input id="eflore_nomenclature_submit" type="submit" value="<?=$i18n['recherche'];?>" />
33 jpm 29
				</td>
30
			</tr>
31
		</table>
32
	</fieldset>
33
</form>
43 delphine 34
 
35
<?php if (isset($nom_approche)) : ?>
56 delphine 36
	<p id="efr-ortho-approche"> <span class="erreur"><?=$i18n['orthographe'];?></span><a href="<?=$url_nom_approche;?>"><?=$nom_approche;?></a></p>
33 jpm 37
<?php endif; ?>
43 delphine 38
<?php if (isset($information)) : ?>
39
	<p id="information"><?=$information?></p>
40
<?php endif; ?>
33 jpm 41
<!-- FIN FORM_NOM -->