142 lines
4.4 KiB
Plaintext
142 lines
4.4 KiB
Plaintext
<!DOCTYPE html>
|
||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
|
||
<head>
|
||
<meta charset="utf-8" />
|
||
<style type="text/css">
|
||
@page
|
||
{
|
||
size: A4 portrait;
|
||
margin: 1cm;
|
||
}
|
||
body
|
||
{
|
||
font-family: Serif;
|
||
font-size: 11pt;
|
||
}
|
||
#logo
|
||
{
|
||
max-height : 4cm;
|
||
}
|
||
#titre
|
||
{
|
||
margin : 0 2cm 0 2cm;
|
||
text-align : center;
|
||
font-size : 14pt;
|
||
font-weight: bold;
|
||
}
|
||
#articles
|
||
{
|
||
text-align : center;
|
||
}
|
||
#numRecu
|
||
{
|
||
text-align : right;
|
||
margin-right: 1em;
|
||
}
|
||
|
||
#versements
|
||
{
|
||
border-top: 1px solid rgb(0, 0, 128);
|
||
border-bottom: 1px solid rgb(0, 0, 128);
|
||
}
|
||
.rubrique
|
||
{
|
||
background-color : rgb(200, 200, 250);
|
||
padding : 0 0 0 1mm;
|
||
}
|
||
.titre, .important
|
||
{
|
||
font-weight:bold;
|
||
}
|
||
.libelle
|
||
{
|
||
font-weight: normal;
|
||
}
|
||
#ville
|
||
{
|
||
margin-bottom: 0;
|
||
}
|
||
#signature
|
||
{
|
||
display: block;
|
||
max-width : 7cm;
|
||
max-height : 4cm;
|
||
margin: 0 auto;
|
||
padding-bottom : 2mm;
|
||
}
|
||
</style>
|
||
</head>
|
||
|
||
<body class="print">
|
||
<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 {{$numero}}</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="cartouche" id="beneficiaire">
|
||
<h3 class="rubrique">Bénéficiaire des versements</h3>
|
||
<p class="important">Association « {{$config.org_name}} »<br />
|
||
{{$config.org_address}}<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}}
|
||
{{if $courriel != ""}}
|
||
<br />courriel : <a href="mailto:{{$courriel}}">{{$courriel}}</a>
|
||
{{/if}}
|
||
</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>
|
||
{{/versements}}
|
||
</ul>
|
||
|
||
{{#informations}}
|
||
<p><span class="titre">{{$titre}}</span><span class="libelle"> {{$libelle}}</span></p>
|
||
{{/informations}}
|
||
|
||
<p>Le bénéficiaire certifie sur l’honneur que les dons et versements qu’il 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 id="ville">{{$ville_asso}} le {{$date}}
|
||
<img id="signature" src="{{$signature}}" />
|
||
</p>
|
||
<div>
|
||
<span id="nom">{{$nom_responsable}}</span><br />
|
||
<span id="fonction">{{$fonction_responsable}}</span>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
</html>
|