Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 86 | Rev 110 | 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 -->
100 gduche 2
<form id="ef-form-nomenclature" name="ef-form-nomenclature" action="<?=$url_form;?>" method="get" class="importance1">
33 jpm 3
	<fieldset>
100 gduche 4
		<h1><?=$i18n['titre-nom'];?></h1>
5
		<span class="zone-choix-type-nom">
6
			<?php if (isset($nom_verna)) { ?>
7
			    <span class="type-nom">
8
					<input id="type_nom_scientifique" name="type_nom" value="nom_scientifique" type="radio" <?=($type_nom == 'nom_scientifique') ? 'checked="checked"': '';?> />
9
					<label for="type_nom_scientifique"><?=$i18n['ns'];?></label>
10
				</span>
11
				<span class="type-nom">
12
					<input id="type_nom_vernaculaire" name="type_nom" value="nom_vernaculaire" type="radio" <?=($type_nom == 'nom_vernaculaire') ? 'checked="checked"': '';?> />
13
					<label for="type_nom_vernaculaire" title="(en français, allemand, anglais, catalan, espagnol, italien ou néerlandais)"><?=$i18n['nv'];?></label>
14
				</span>
15
			<?php } else {?>
16
				<input id="type-nom-scientifique" name="type_nom" type="hidden" value="nom_scientifique" />
17
				<?=$i18n['ns'];?>
18
			<?php } ?>
19
		</span>
20
		<input id="nom" name="nom" class="champ" size="30" maxlength="255" type="text" autocomplete="off" <?php if(isset($nom)) echo 'value="'.$nom.'"';?> />
21
		<span id="zone-liens-recherche">
22
			<input id="referentiel" name="referentiel" type="hidden" value="<?=Registre::get('parametres.referentiel')?>" />
23
			<input id="module" name="module" type="hidden" value="recherche" />
24
			<input id="action" name="action" type="hidden" value="rechercheSimple" />
25
			<input id="eflore_nomenclature_submit" name="submit" type="submit" value="<?=$i18n['recherche'];?>" class="ok"/>
26
			<input id="eflore_nomenclature_fiche" name="submit" type="submit" value="<?=$i18n['fiche'];?>" />
27
		</span>
33 jpm 28
	</fieldset>
29
</form>
43 delphine 30
 
31
<?php if (isset($nom_approche)) : ?>
100 gduche 32
	<p id="efr-ortho-approche"> <span class="erreur"><?=$i18n['orthographe'];?></span><a href="<?=$url_nom_approche?>"><?=$nom_approche;?></a></p>
33
 
33 jpm 34
<?php endif; ?>
43 delphine 35
<?php if (isset($information)) : ?>
36
	<p id="information"><?=$information?></p>
37
<?php endif; ?>
33 jpm 38
<!-- FIN FORM_NOM -->