Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 2996 Rev 3017
Line 514... Line 514...
514
						<form id="form-obs" class="form-horizontal" role="form" autocomplete="on">
514
						<form id="form-obs" class="form-horizontal" role="form" autocomplete="on">
515
							<h2>Relevé de la plante</h2>
515
							<h2>Relevé de la plante</h2>
Line 516... Line 516...
516
 
516
 
Line 517... Line 517...
517
							<input id="referentiel" type="hidden" value="bdtfx" />
517
							<input id="referentiel" type="hidden" value="bdtfx" />
518
 
-
 
519
							<div id="taxon-input-groupe" class="form-group has-tooltip"
-
 
520
								title="Sélectionnez une espèce dans la liste déroulante pour lier
-
 
521
									votre nom au référentiel selectionné. Si vous
-
 
522
									le désirez vous pouvez aussi saisir un nom absent du référentiel
518
 
523
									(Ex. : 'fleur violette' ou 'viola sinensis???')." >
519
							<div id="taxon-input-groupe" class="form-group has-tooltip">
524
								<label for="taxon"  class="col-sm-4 control-label">
520
								<label for="taxon"  class="col-sm-4 control-label">
525
									<strong class="obligatoire">*</strong>
521
									<strong class="obligatoire">*</strong>
526
									Espèce <?= $referentiel_impose ? '('.$ns_referentiel.')' : '' ?>
522
									Espèce <?= $referentiel_impose ? '('.$ns_referentiel.')' : '' ?>
-
 
523
								</label>
527
								</label>
524
								<div class="col-sm-8">
528
								<div class="col-sm-8">
525
									<?php if(isset($nom_sci_espece_defaut) & $nom_sci_espece_defaut !== '') { ?>
529
									<div class="input-group">
526
										<div class="input-group">
530
										<span class="input-group-addon">
527
											<span class="input-group-addon">
531
											<span class="glyphicon glyphicon-leaf"></span>
528
												<span class="glyphicon glyphicon-leaf"></span>
532
										</span>
529
											</span>
533
										<input id="taxon" name="taxon" type="text" class="form-control"
530
											<input id="taxon" name="taxon" type="text" class="form-control"
-
 
531
												value="<?= $nom_sci_espece_defaut; ?>" />
-
 
532
										</div>
-
 
533
									<?php } else { ksort($taxons);?>
-
 
534
										<select id="taxon" name="taxon" class="form-control">
-
 
535
											<?php foreach ($taxons as $taxon) : ?>
-
 
536
												<option value="<?=$taxon['nom_sel']?>" title="<?= $taxon['nom_fr'];?>"><?=$taxon['nom_sel']?></option>
-
 
537
											<?php endforeach; ?>
-
 
538
										</select>
-
 
539
									<?php } ?>
-
 
540
								</div>
-
 
541
							</div>
-
 
542
 
-
 
543
							<div class="form-group has-tooltip"
-
 
544
									title="Indiquez la certitude de votre identification.">
-
 
545
								<label for="certitude" class="col-sm-4 control-label">
-
 
546
									Certitude
-
 
547
								</label>
-
 
548
								<div class="col-sm-8">
-
 
549
									<select id="certitude" class="form-control" name="certitude">
-
 
550
										<option selected value="">Sélectionnez la certitude de votre identification</option>
-
 
551
										<option value="Certaine">Certaine</option>
-
 
552
										<option value="Douteuse">Douteuse</option>
534
											value="<?= $nom_sci_espece_defaut; ?>" />
553
										<option value="aDeterminer">À déterminer</option>
535
									</div>
554
									</select>
Line 536... Line 555...
536
								</div>
555
								</div>
537
							</div>
556
							</div>