Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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