Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 587 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 587 Rev 591
Line 49... Line 49...
49
		});
49
		});
Line 50... Line 50...
50
		
50
		
51
		gestionBiblio();
51
		gestionBiblio();
52
	});
52
	});
53
</script>
-
 
54
<form id="ef-form-niveau" name="ef-form-niveau" action="<?=$url_form;?>" method="get">
-
 
55
	<fieldset>
-
 
56
		<span id="radio" class="zone-choix-niveau">
53
</script>
-
 
54
 
57
			
55
<div class="choixNiveau">
58
			<span class="choix-niveau">
56
		<span class="choix-niveau">
59
				<input id="niveau_1" name="niveau" value="1" type="radio" <?=($niveau == '1') ? 'checked="checked"': '';?> />
-
 
60
				<label for="niveau_1"><?=$i18n['niveau-1'];?></label>
57
				<a href="<?=$parametres['url']?>&niveau=1" class="niveau1<?=$parametres['niveau'] == 1? ' actif' : ''?>">Débutant</a>
61
			</span>
58
			</span>
62
			<span class="choix-niveau">
59
			<span class="choix-niveau">
63
				<input id="niveau_2" name="niveau" value="2" type="radio" <?=($niveau == '2') ? 'checked="checked"': '';?> />
-
 
64
				<label for="niveau_2"><?=$i18n['niveau-2'];?></label>
60
				<a href="<?=$parametres['url']?>&niveau=2" class="niveau2<?=$parametres['niveau'] == 2? ' actif' : ''?>">Intermédiaire</a>
65
			</span>
61
			</span>
66
			<span class="choix-niveau">
62
			<span class="choix-niveau">
67
				<input id="niveau_3" name="niveau" value="3" type="radio" <?=($niveau == '3') ? 'checked="checked"': '';?> />
-
 
68
				<label for="niveau_3"><?=$i18n['niveau-3'];?></label>
63
				<a href="<?=$parametres['url']?>&niveau=3" class="niveau3<?=$parametres['niveau'] == 3? ' actif' : ''?>">Expert</a>
69
			</span>
-
 
70
		</span>
-
 
71
		<span id="zone-liens-niveau">
-
 
72
			<?php foreach ($parametres as $nom => $valeur) : ?>
-
 
73
				<input id="eflore_niveau_<?=$nom;?>" name="<?=$nom;?>" type="hidden" value="<?=$valeur;?>" />
-
 
74
			<?php endforeach; ?>
-
 
75
			<input id="eflore_niveau_submit" name="submit" type="submit" value="<?=$i18n['ok'];?>" class="ok"/>
-
 
76
		</span>
-
 
77
	</fieldset>
64
			</span>
Line 78... Line 65...
78
</form>
65
</div>
79
 
66