mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-08 02:46:26 +00:00
87 lines
3 KiB
TeX
87 lines
3 KiB
TeX
{% load i18n %}
|
|
{% language 'fr' %}
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
% Invoice Template
|
|
% LaTeX Template
|
|
% Version 1.0 (3/11/12)
|
|
%% This template has been downloaded from:
|
|
% http://www.LaTeXTemplates.com
|
|
%
|
|
% Original author:
|
|
% Trey Hunner (http://www.treyhunner.com/)
|
|
%
|
|
% License:
|
|
% CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/)
|
|
%
|
|
% Important note:
|
|
% This template requires the invoice.cls file to be in the same directory as
|
|
% the .tex file. The invoice.cls file provides the style used for structuring the
|
|
% document.
|
|
%
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
%----------------------------------------------------------------------------------------
|
|
% DOCUMENT CONFIGURATION
|
|
%----------------------------------------------------------------------------------------
|
|
|
|
\documentclass[12pt]{article} % Use the custom invoice class (invoice.cls)
|
|
\usepackage[utf8]{inputenc}
|
|
\usepackage[letterpaper,hmargin=0.79in,vmargin=0.79in]{geometry}
|
|
\usepackage{longtable}
|
|
\usepackage{graphicx}
|
|
\usepackage{tabularx}
|
|
\usepackage{eurosym}
|
|
\usepackage{multicol}
|
|
|
|
\pagestyle{empty} % No page numbers
|
|
|
|
\linespread{1.5}
|
|
|
|
\newcommand{\doublehline}{\noalign{\hrule height 1pt}}
|
|
\setlength{\parindent}{0cm}
|
|
|
|
|
|
\begin{document}
|
|
|
|
%----------------------------------------------------------------------------------------
|
|
% HEADING SECTION
|
|
%----------------------------------------------------------------------------------------
|
|
\begin{center}
|
|
{\Huge\bf Reçu d'adhésion \\ {{asso_name|safe}} } % Company providing the invoice
|
|
\end{center}
|
|
|
|
\bigskip
|
|
\hrule
|
|
\bigskip
|
|
|
|
\vfill
|
|
|
|
Je sousigné, {{pres_name|safe}}, déclare par la présente avoir reçu le bulletin d'adhésion de:
|
|
|
|
\begin{center}
|
|
\setlength{\tabcolsep}{10pt} % Make table columns tighter, usefull for postionning
|
|
\begin{tabular}{r l r l}
|
|
{\bf Prénom :}~ & {{firstname|safe}} & {% if phone %}{\bf Téléphone :}~ & {{phone}}{% else %} & {% endif %} \\
|
|
{\bf Nom :}~ & {{lastname|safe}} & {\bf Mail :}~ & {{email|safe}} \\
|
|
\end{tabular}
|
|
\end{center}
|
|
\bigskip
|
|
|
|
ainsi que sa cotisation.
|
|
|
|
Le postulant, déclare reconnaître l'objet de l'association, et en a accepté les statuts ainsi que le règlement intérieur qui sont mis à sa disposition dans les locaux de l'association. L'adhésion du membre sus-nommé est ainsi validée. Ce reçu confirme la qualité de membre du postulant, et ouvre droit à la participation à l'assemblée générale de l'association jusqu'au {{date_end|date:"d F Y"}}.
|
|
|
|
\bigskip
|
|
|
|
Validé électroniquement par {{pres_name|safe}}, le {{date_begin|date:"d/m/Y"}}.
|
|
|
|
\vfill
|
|
\hrule
|
|
\smallskip
|
|
\footnotesize
|
|
Les informations recueillies sont nécessaires pour votre adhésion. Conformément à la loi "Informatique et Libertés" du 6 janvier 1978, vous disposez d'un droit d'accès et de rectification aux données personnelles vous concernant. Pour l'exercer, adressez-vous au secrétariat de l'association.
|
|
|
|
|
|
\end{document}
|
|
{% endlanguage %}
|