Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 185 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
178 delphine 1
<!-- DEBUT FORM_NIVEAU -->
2
<form id="ef-form-niveau" name="ef-form-niveau" action="<?=$url_form;?>" method="get">
3
	<fieldset>
4
		<span class="zone-choix-niveau">
5
 
6
			<span class="choix-niveau">
7
				<input id="niveau_1" name="niveau" value="1" type="radio" <?=($niveau == '1') ? 'checked="checked"': '';?> />
8
				<label for="niveau_1"><?=$i18n['niveau-1'];?></label>
9
			</span>
10
			<span class="choix-niveau">
11
				<input id="niveau_2" name="niveau" value="2" type="radio" <?=($niveau == '2') ? 'checked="checked"': '';?> />
12
				<label for="niveau_2"><?=$i18n['niveau-2'];?></label>
13
			</span>
14
			<span class="choix-niveau">
15
				<input id="niveau_3" name="niveau" value="3" type="radio" <?=($niveau == '3') ? 'checked="checked"': '';?> />
16
				<label for="niveau_3"><?=$i18n['niveau-3'];?></label>
17
			</span>
18
		</span>
19
		<span id="zone-liens-niveau">
20
			<input id="referentiel" name="referentiel" type="hidden" value="<?=Registre::get('parametres.referentiel')?>" />
21
			<input id="module" name="module" type="hidden" value="recherche" />
22
			<input id="action" name="action" type="hidden" value="Niveau" />
23
			<input id="eflore_niveau_submit" name="submit" type="submit" value="<?=$i18n['ok'];?>" class="ok"/>
24
		</span>
25
	</fieldset>
26
</form>
27
 
28
 
29
 
30
<!-- FIN FORM_NOM -->