recusfiscaux/templates/recu.skel

154 lines
4.8 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<meta charset="utf-8" />
<style>
@page
{
size: A4 portrait;
margin: 1cm;
}
body
{
font-family: Serif;
font-size: 11pt;
background-color: white;
width : 19cm;
}
#entete
{
position : relative;
}
#logo
{
position : fixed;
max-width : 4cm;
max-height : 4cm;
}
#titre
{
position : fixed;
margin : 0 4.5cm 0 4.5cm;
top : 1cm;
text-align : center;
font-size : 14pt;
font-weight: bold;
}
#articles
{
position : fixed;
margin : 0 4.5cm 0 4.5cm; /* idem titre */
top : 6em;
text-align : center;
}
#numRecu
{
position : relative;
text-align : right;
top : 8em;
right: 1em;
}
#beneficiaire, #donateur, #versements, #final
{
position : relative;
top : 9em;
}
#versements
{
position : relative;
top : 9em;
border-top: 1px solid rgb(0, 0, 128);
border-bottom: 1px solid rgb(0, 0, 128);
}
.rubrique
{
background-color : rgb(200, 200, 250);
padding : 2mm;
}
.titre, .important
{
font-weight:bold;
}
.libelle
{
font-weight: normal;
}
#signature
{
display: block;
max-width : 7cm;
max-height : 4cm;
margin: 0 auto;
padding-bottom : 2mm;
}
</style>
</head>
<body>
<div class="cartouche" id="entete">
<img id="logo" src="{{$logo_asso}}" />
<p id="titre">Reçu au titre des dons à certains organismes d'intérêt général</p>
<p id="articles">Articles 200, 238 bis et 978 du code général des impôts</p>
<div id="numRecu">
<p class="important">Reçu numéro {{$annee_recu}}/{{$numero}}</p>
</div>
</div>
<div class="cartouche" id="beneficiaire">
<h3 class="rubrique">Bénéficiaire des versements</h3>
<p class="important">Association « {{$config.nom_asso}} »<br />
{{$config.adresse_asso}}<br />
<span class="titre">Objet : </span><span class="libelle">{{$objet_asso}}</span></p>
</div>
<div class="cartouche" id="donateur">
<h3 class="rubrique">Donateur</h3>
<p>{{$nom}}<br />
{{$adresse}}<br />
{{$code_postal}} {{$ville}}</p>
</div>
<div class="cartouche" id="versements">
<p>Le bénéficiaire reconnaît avoir reçu au titre des dons et versements ouvrant droit à réduction d'impôt :</p>
<ul>
{{#versements}}
<li>
la somme de <b>***{{$montant|raw|money}}*** euros</b>
{{if $cents != ""}}
(<b>{{$euros}} euros et {{$cents}} cents</b>)
{{else}}
(<b>{{$euros}} euros</b>)
{{/if}}
{{if $libelle != ""}}
({{$libelle}})
{{/if}}
<br />date des versements :
{{if $dateMin == $dateMax}}
le {{$dateMin}}
{{else}}
du {{$dateMin}} au {{$dateMax}}
{{/if}}
</li>
<br />
{{/versements}}
</ul>
{{#informations}}
<p><span class="titre">{{$titre}}</span><span class="libelle"> {{$libelle}}</span></p>
{{/informations}}
<p>Le bénéficiaire certifie sur lhonneur que les dons et versements quil reçoit ouvrent droit à la réduction d'impôt prévue {{$texteArticles}} du code général des impôts.</p>
</div>
<div class="cartouche" id="final">
<p>{{$ville_asso}} le {{$date}}<br />
<img id="signature" src="{{$signature}}" />
</p>
<div>
<span id="nom">{{$nom_responsable}}</span><br />
<span id="fonction">{{$fonction_responsable}}</span>
</div>
</div>
</body>
</html>