|
|
|
|
@ -14,7 +14,6 @@
|
|
|
|
|
\usepackage{array}
|
|
|
|
|
\usepackage{tabularx}
|
|
|
|
|
\usepackage{ltablex}
|
|
|
|
|
\usepackage{longtable}
|
|
|
|
|
|
|
|
|
|
\newcommand{\picpos}[4]{
|
|
|
|
|
\begin{textblock*}{#1}(#2, #3)
|
|
|
|
|
@ -35,7 +34,9 @@
|
|
|
|
|
|
|
|
|
|
\renewcommand{\arraystretch}{1.5}
|
|
|
|
|
|
|
|
|
|
\newcolumntype{L}{>{\hspace{0pt}}X}
|
|
|
|
|
\newcolumntype{L}{>{\hspace{0pt}\raggedright\arraybackslash}X}
|
|
|
|
|
\newcolumntype{S}{>{\raggedright\arraybackslash\hsize=0.7\hsize}X}
|
|
|
|
|
|
|
|
|
|
\newcommand{\tickedbox}{
|
|
|
|
|
\makebox[0pt][l]{$\square$}\raisebox{.15ex}{\hspace{0.1em}$\checkmark$}
|
|
|
|
|
}
|
|
|
|
|
@ -81,24 +82,26 @@
|
|
|
|
|
\end{tabular}
|
|
|
|
|
\end{table}
|
|
|
|
|
|
|
|
|
|
\begin{longtable}{lp{3.5cm}p{4cm}p{3cm}p{3.8cm}}
|
|
|
|
|
\hline
|
|
|
|
|
\# & \textbf{Name} & \textbf{Anschrift} & \textbf{Telefon} & \textbf{Notfallkontakte} \\
|
|
|
|
|
\hline
|
|
|
|
|
\endhead
|
|
|
|
|
\hline
|
|
|
|
|
\endfoot
|
|
|
|
|
{% for m in memberlist.membersonlist.all %}
|
|
|
|
|
{{ forloop.counter }} &
|
|
|
|
|
{{ m.member.name|esc_all }} &
|
|
|
|
|
{{ m.member.address|esc_all }} &
|
|
|
|
|
{{ m.member.contact_phone_number|esc_all }} &
|
|
|
|
|
{% for c in m.member.emergencycontact_set.all %}
|
|
|
|
|
{{ c.name }} \newline
|
|
|
|
|
Tel.: {{ c.phone_number }}
|
|
|
|
|
{% endfor %} \\
|
|
|
|
|
{% endfor %}
|
|
|
|
|
\end{longtable}
|
|
|
|
|
\begin{tabularx}{1\linewidth}{lSLSL}
|
|
|
|
|
\toprule
|
|
|
|
|
\# & \textbf{Name} & \textbf{Anschrift} & \textbf{Telefon} & \textbf{Notfallkontakte} \\
|
|
|
|
|
\midrule
|
|
|
|
|
\endhead
|
|
|
|
|
\bottomrule
|
|
|
|
|
\endfoot
|
|
|
|
|
|
|
|
|
|
{% for m in memberlist.membersonlist.all %}
|
|
|
|
|
{{ forloop.counter }} &
|
|
|
|
|
{{ m.member.name|esc_all }} &
|
|
|
|
|
{{ m.member.address_multiline|esc_all }} &
|
|
|
|
|
{{ m.member.contact_phone_number|esc_all }} &
|
|
|
|
|
{% for c in m.member.emergencycontact_set.all %}
|
|
|
|
|
{{ c.name|esc_all }} \newline
|
|
|
|
|
Tel.: {{ c.phone_number|esc_all }}
|
|
|
|
|
{% endfor %} \\
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
|
|
\end{tabularx}
|
|
|
|
|
|
|
|
|
|
\vspace{1cm}
|
|
|
|
|
|
|
|
|
|
|