Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 43 | 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>
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>
53 delphine 24
					<input id="referentiel" name="referentiel" type="hidden" value="<?=Registre::get('parametres.referentiel')?>" />
43 delphine 25
					<input id="module" name="module" type="hidden" value="recherche-simple" />
26
					<input id="action" name="action" type="hidden" value="rechercheNom" />
27
					<input id="eflore_nomenclature_submit" type="submit" value="<?=$i18n['recherche'];?>" />
33 jpm 28
				</td>
29
			</tr>
30
		</table>
31
	</fieldset>
32
</form>
43 delphine 33
 
34
<?php if (isset($nom_approche)) : ?>
53 delphine 35
	<p id="efr-ortho-approche"> <span class="erreur"><?=$i18n['orthographe'];?></span><a href="<?=$nom_approche_url;?>"><?php print_r($nom_approche);?></a></p>
33 jpm 36
<?php endif; ?>
43 delphine 37
<?php if (isset($information)) : ?>
38
	<p id="information"><?=$information?></p>
39
<?php endif; ?>
33 jpm 40
<!-- FIN FORM_NOM -->