Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 74 Rev 86
Line 5... Line 5...
5
		<table>
5
		<table>
6
			<tr>
6
			<tr>
7
				<td>
7
				<td>
8
					<label for="nom"><?=$i18n['nom'];?></label>
8
					<label for="nom"><?=$i18n['nom'];?></label>
9
				</td><td>
9
				</td><td>
-
 
10
					<?php if (isset($nom_verna)) { ?>
10
					<ul>
11
						<ul>
11
						<li>
12
							<li>
12
							<input id="type_nom_scientifique" name="type_nom" value="nom_scientifique" type="radio" <?=($type_nom == 'nom_scientifique') ? 'checked="checked"': '';?> />
13
								<input id="type_nom_scientifique" name="type_nom" value="nom_scientifique" type="radio" <?=($type_nom == 'nom_scientifique') ? 'checked="checked"': '';?> />
13
							<label for="type_nom_scientifique"><?=$i18n['ns'];?></label>
14
								<label for="type_nom_scientifique"><?=$i18n['ns'];?></label>
14
						</li>
15
							</li>
15
						<li>
16
							<li>
16
							<input id="type_nom_vernaculaire" name="type_nom" value="nom_vernaculaire" type="radio" <?=($type_nom == 'nom_vernaculaire') ? 'checked="checked"': '';?> />
17
								<input id="type_nom_vernaculaire" name="type_nom" value="nom_vernaculaire" type="radio" <?=($type_nom == 'nom_vernaculaire') ? 'checked="checked"': '';?> />
17
							<label for="type_nom_vernaculaire" title="(en fran�ais, allemand, anglais, catalan, espagnol, italien ou n�erlandais)"><?=$i18n['nv'];?></label>
18
								<label for="type_nom_vernaculaire" title="(en français, allemand, anglais, catalan, espagnol, italien ou néerlandais)"><?=$i18n['nv'];?></label>
18
						</li>
19
							</li>
19
					</ul>
20
						</ul>
-
 
21
					<?php } else {?>
-
 
22
						<input id="type_nom_scientifique" name="type_nom" type="hidden" value="nom_scientifique" />
-
 
23
						<?=$i18n['ns'];?>
-
 
24
					<?php } ?>
20
				</td><td>
25
				</td><td>
21
					<input id="nom" name="nom" class="champ" size="30" maxlength="255" type="text" autocomplete="off" <?php if(isset($nom)) echo 'value="'.$nom.'"';?> />
26
					<input id="nom" name="nom" class="champ" size="30" maxlength="255" type="text" autocomplete="off" <?php if(isset($nom)) echo 'value="'.$nom.'"';?> />
22
				</td>
27
				</td>
Line 23... Line 28...
23
 
28