Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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