Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev Author Line No. Line
650 mathilde 1
<!-- cadre de bas de la fiche contient les liens pour export pdf. -->
2
<script>
3
<!--
4
$(document).ready(function(){
5
	$('#export_choix').click(function() {
6
		$('#bloc_export_choix').toggle();
7
	});
8
});
9
-->
10
</script>
11
 
12
<div class="importance1">
13
	<a href="<?=$lien?>" style="font-size:14px;"> Télécharger la fiche au format PDF.>> </a> <br/><br/>
14
	<a href="#export_choix"  id="export_choix" name="export_choix">Personnaliser la fiche PDF. >></a>
15
	<div  id="bloc_export_choix">
16
		<form id="export_pdf" method="post" action="<?=$lien?>" >
17
			<br/>
18
			<span>Cocher les sections à télécharger :</span>
19
			<fieldset>
20
				<label> Description </label> <input type="checkbox" name="bloc[]" value="description" />
21
				<label> Ethnobotanique </label>	<input type="checkbox" name="bloc[]" value="ethnobotanique" />
22
				<label> Ecologie </label> <input type="checkbox" name="bloc[]" value="ecologie" />
23
				<label> Statuts de protection </label> <input type="checkbox" name="bloc[]" value="statuts" />
24
				<label> Nomenclature </label> <input type="checkbox" name="bloc[]" value="nomenclature" />
25
				<label> Classification </label>	<input type="checkbox" name="bloc[]" value="classification" />
26
				<label> Bibliographie </label> <input type="checkbox" name="bloc[]" value="bibliographie" />
27
				<label> Illustrations </label> <input type="checkbox" name="bloc[]" value="illustrations" />
28
				<label> Répartition </label> <input type="checkbox" name="bloc[]" value="repartition" />
29
			</fieldset>
30
			<input type="submit" name="choix" value="Télécharger la fiche."/>
31
		</form>
32
	</div>
33
</div>