Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 192 | Rev 250 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 192 Rev 198
1
<!-- DEBUT FORM_NIVEAU -->
1
<!-- DEBUT FORM_NIVEAU -->
2
<script type="text/javascript">
2
<script type="text/javascript">
3
	$(function() {
-
 
4
		$( "#radio" ).buttonset();
-
 
5
	});
-
 
6
	
-
 
7
	$(document).ready(function() {
3
	$(document).ready(function() {
-
 
4
		$( "#radio" ).buttonset();
8
		$('#eflore_niveau_submit').hide();
5
		$('#eflore_niveau_submit').hide();
9
		$(".zone-choix-niveau input").click(function() {
6
		$(".zone-choix-niveau input").click(function() {
10
			$('#eflore_niveau_submit').click();
7
			$('#eflore_niveau_submit').click();
11
		});
8
		});
12
	});
9
	});
13
</script>
10
</script>
14
<form id="ef-form-niveau" name="ef-form-niveau" action="<?=$url_form;?>" method="get">
11
<form id="ef-form-niveau" name="ef-form-niveau" action="<?=$url_form;?>" method="get">
15
	<fieldset>
12
	<fieldset>
16
		<span id="radio" class="zone-choix-niveau">
13
		<span id="radio" class="zone-choix-niveau">
17
			
14
			
18
			<span class="choix-niveau">
15
			<span class="choix-niveau">
19
				<input id="niveau_1" name="niveau" value="1" type="radio" <?=($niveau == '1') ? 'checked="checked"': '';?> />
16
				<input id="niveau_1" name="niveau" value="1" type="radio" <?=($niveau == '1') ? 'checked="checked"': '';?> />
20
				<label for="niveau_1"><?=$i18n['niveau-1'];?></label>
17
				<label for="niveau_1"><?=$i18n['niveau-1'];?></label>
21
			</span>
18
			</span>
22
			<span class="choix-niveau">
19
			<span class="choix-niveau">
23
				<input id="niveau_2" name="niveau" value="2" type="radio" <?=($niveau == '2') ? 'checked="checked"': '';?> />
20
				<input id="niveau_2" name="niveau" value="2" type="radio" <?=($niveau == '2') ? 'checked="checked"': '';?> />
24
				<label for="niveau_2"><?=$i18n['niveau-2'];?></label>
21
				<label for="niveau_2"><?=$i18n['niveau-2'];?></label>
25
			</span>
22
			</span>
26
			<span class="choix-niveau">
23
			<span class="choix-niveau">
27
				<input id="niveau_3" name="niveau" value="3" type="radio" <?=($niveau == '3') ? 'checked="checked"': '';?> />
24
				<input id="niveau_3" name="niveau" value="3" type="radio" <?=($niveau == '3') ? 'checked="checked"': '';?> />
28
				<label for="niveau_3"><?=$i18n['niveau-3'];?></label>
25
				<label for="niveau_3"><?=$i18n['niveau-3'];?></label>
29
			</span>
26
			</span>
30
		</span>
27
		</span>
31
		<span id="zone-liens-niveau">
28
		<span id="zone-liens-niveau">
32
			<input id="eflore_niveau_referentiel" name="referentiel" type="hidden" value="<?=$parametres['referentiel'];?>" />
29
			<input id="eflore_niveau_referentiel" name="referentiel" type="hidden" value="<?=$parametres['referentiel'];?>" />
33
			<input id="eflore_niveau_module" name="module" type="hidden" value="<?=$parametres['module'];?>" />
30
			<input id="eflore_niveau_module" name="module" type="hidden" value="<?=$parametres['module'];?>" />
34
			<input id="eflore_niveau_action" name="action" type="hidden" value="<?=$parametres['action'];?>" />
31
			<input id="eflore_niveau_action" name="action" type="hidden" value="<?=$parametres['action'];?>" />
35
			<?php if (isset($parametres['nom'])) : ?>
32
			<?php if (isset($parametres['nom'])) : ?>
36
				<input id="eflore_niveau_nom" name="nom" type="hidden" value="<?=$parametres['nom'];?>" />
33
				<input id="eflore_niveau_nom" name="nom" type="hidden" value="<?=$parametres['nom'];?>" />
37
				<input id="eflore_niveau_type_nom" name="type_nom" type="hidden" value="<?=$parametres['type_nom'];?>" />
34
				<input id="eflore_niveau_type_nom" name="type_nom" type="hidden" value="<?=$parametres['type_nom'];?>" />
38
			<?php endif; ?>
35
			<?php endif; ?>
39
			<input id="eflore_niveau_submit" name="submit" type="submit" value="<?=$i18n['ok'];?>" class="ok"/>
36
			<input id="eflore_niveau_submit" name="submit" type="submit" value="<?=$i18n['ok'];?>" class="ok"/>
40
		</span>
37
		</span>
41
	</fieldset>
38
	</fieldset>
42
</form>
39
</form>
43
 
40
 
44
 
41
 
45
 
42
 
46
<!-- FIN FORM_NOM -->
43
<!-- FIN FORM_NOM -->