You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
2.0 KiB
TeX
60 lines
2.0 KiB
TeX
{% extends "members/tex_base.tex" %}
|
|
{% load static common tex_extras %}
|
|
|
|
{% block headline %}{% endblock %}
|
|
{% block contact %}{% endblock %}
|
|
|
|
{% block extra-preamble %}
|
|
\usepackage{rotating}
|
|
\usepackage[code=Code39,X=.48mm,ratio=3.5,H=0.5cm]{makebarcode}
|
|
\geometry{reset,margin=1cm, bottom=1.5cm}
|
|
\renewcommand{\arraystretch}{1}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% settings_value 'DEFAULT_STATIC_PATH' as static_root %}
|
|
|
|
{% for group in groups %}
|
|
\picpos{2.5cm}{16cm}{-0.4cm}{%
|
|
{{ static_root }}/general/img/dav_logo_sektion.png%
|
|
}
|
|
% HEADLINE
|
|
|
|
{\noindent\Large{Anmeldeliste {{ group.name }} }}\\[1mm]
|
|
\noindent {{ weekdays|index:group.weekday|esc_all }}, {{ group.start_time }} - {{ group.end_time }} Uhr\\
|
|
|
|
\noindent Anwesende Jugendleitende und Teilnehmende werden mit einem Kreuz ($\times$) markiert und die ausgefüllte
|
|
Liste zum Anfang der Gruppenstunde an der Kasse abgegeben. Zum Ende wird sie wieder abgeholt. Wenn die Punkte auf einer Karte fast aufgebraucht sind, notiert die Kasse die verbliebenen Eintritte (3, 2, 1) unter dem Kreuz.
|
|
\begin{table}[H]
|
|
\centering
|
|
%\begin{tabularx}{\textwidth}{lYY|l|l|l|l|l|l|l|l|l|l|l|l|l|l|l|l|l}
|
|
\begin{tabularx}{\textwidth}{X{% for i in week_range %}|l{% endfor%}}
|
|
\toprule
|
|
\textbf{Name} {% for i in week_range %}
|
|
& \begin{sideways} {{ dates|index:i|add:group.weekday|date_vs }} \end{sideways}
|
|
{% endfor %} \\
|
|
|
|
{% for j in member_range %}
|
|
{% with m=group.sorted_members|index:j %}
|
|
\midrule
|
|
\begin{tabular}{@{}l}
|
|
{% if m.ticket_tag|length > 2 %}\barcode{{ m.ticket_tag }}{% else %}\rule{0pt}{5mm}{% endif %}
|
|
\vspace{-0.8ex} \\
|
|
{\small {{ j|plus:1 }} {% if m in group.leiters.all %}\textbf{JL}{% endif %}
|
|
{{ m.name|esc_all }} {% if m.ticket_tag|length > 2 %} - {{ m.ticket_tag }}{% endif %}
|
|
\vspace{-3ex} }
|
|
\end{tabular}
|
|
|
|
{% for i in week_range %} & {% endfor %}\\
|
|
{% endwith %}
|
|
{% endfor %}
|
|
|
|
\bottomrule
|
|
\end{tabularx}
|
|
\end{table}
|
|
|
|
\clearpage
|
|
{% endfor %}
|
|
|
|
{% endblock content %}
|