uni1=hochschule.decode('utf-8')).encode('utf-8'))
-
+## TODO: feld 'comments', alle abgemeldeten checken und eintragen,
+## nicht-tüter, nicht-XYer..
def create_teilnehmer_list(outdir = 'output'):
template = env.get_template('teilnehmerliste.tex')
teilnehmer = []
- i = 1
- for vor, nach, nick, hochschule, betrag, bezahlt, shirtsize, zippersize in \
- conn.execute("SELECT vorname, nachname, namensschild, hochschule, betrag, bezahlt, tshirt, zipper FROM teilnehmer ORDER BY UPPER(nachname) ASC"):
+ for vor, nach, nick, hochschule, betrag, bezahlt, shirtsize, zippersize, dochned, comment in \
+ conn.execute("SELECT vorname, nachname, namensschild, hochschule, betrag, bezahlt, tshirt, zipper, dochned, orga_comment FROM teilnehmer ORDER BY UPPER(nachname) ASC"):
vor = vor.decode('utf8')
nach = nach.decode('utf8')
if re.match("kein", zippersize, flags=re.IGNORECASE):
zippersize = ""
- teilnehmer.append({'vorname': vor, 'nachname': nach, 'num': i,
+ ## string to bool..
+ if dochned == "false":
+ will_attend = True
+ else:
+ will_attend = False
+ comment = comment.decode('utf8')
+
+ teilnehmer.append({'vorname': vor, 'nachname': nach,
'hochschule': hochschule, 'nick': nick, 'betrag': betrag, 'bezahlt':
- bezahlt, 'shirtsize': shirtsize, 'zippersize': zippersize})
- i = i+1
+ bezahlt, 'shirtsize': shirtsize, 'zippersize': zippersize,
+ 'will_attend': will_attend, 'comment': comment})
with open(os.path.join(outdir, "teilnehmerliste.tex"), 'w') as out:
\documentclass[a4paper,landscape]{scrartcl}
-\usepackage[margin=2cm]{geometry}
+\usepackage[left=1.2cm,right=2cm,top=1.5cm,bottom=2cm]{geometry}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\begin{document}
\begin{center}
- \begin{longtable}{|m{.1\textwidth}|m{.1\textwidth}|m{.18\textwidth}|m{.15\textwidth}|m{.07\textwidth}|m{.07\textwidth}|m{.05\textwidth}|m{.05\textwidth}|m{.1\textwidth}|}
+ \begin{longtable}{|m{.08\textwidth}|m{.08\textwidth}|m{.12\textwidth}|m{.15\textwidth}|m{.05\textwidth}|m{.05\textwidth}|m{.05\textwidth}|m{.05\textwidth}|m{.05\textwidth}|m{.2\textwidth}|}
\textbf{Vorname} & \textbf{Nachname} & \textbf{Namensschild} & \textbf{Hochschule} &
\textbf{Betrag} & \textbf{Bezahlt} & \textbf{Bar bezahlt} & \textbf{T-Shirt-Größe} &
- \textbf{Zippergröße} \\
+ \textbf{Zipper-Größe} & \textbf{kommentar} \\
\hline
\hline
\endhead
-{% for t in teilnehmer %}
- {{ t['vorname'] | escape_tex }} & {{ t['nachname'] | escape_tex }} & {{ t['nick'] | escape_tex }} & {{
- t['hochschule'] | escape_tex }} & {{ t['betrag'] }} & {{ t['bezahlt'] }} & \vspace{1em} & {{
- t['shirtsize'] | escape_tex }} & {{ t['zippersize'] | escape_tex }} \\
+{% for t in teilnehmer %}%
+{% if t['will_attend'] %}%
+ {{ t['vorname'] | escape_tex }} & {{ t['nachname'] | escape_tex }} & {{ t['nick'] | escape_tex }} & {{
+ t['hochschule'] | escape_tex }} & {{ t['betrag'] }} & {{ t['bezahlt'] }} & \vspace{1em} & {{
+ t['shirtsize'] | escape_tex }} & {{ t['zippersize'] | escape_tex }} & {{ t['comment'] }} \\
+{% endif %}%
\hline{% endfor %}
\end{longtable}
\end{center}