feat: Bundesweite Bögen richtig bei Ziele einsetzen
All checks were successful
Build Kurzpraesentation_Plenum.tex / build_Kurzpraesentation_Plenum (push) Successful in 1m31s
All checks were successful
Build Kurzpraesentation_Plenum.tex / build_Kurzpraesentation_Plenum (push) Successful in 1m31s
This commit is contained in:
parent
77b474f77b
commit
389f0eaf7e
2 changed files with 12 additions and 6 deletions
|
@ -20,8 +20,10 @@ def get_befragung():
|
|||
def generate_bundesweite_ziele_tex():
|
||||
template = env.get_template("bundesweite_ziele.tex")
|
||||
|
||||
data = get_aktueller_stand_data()
|
||||
|
||||
return template.render(
|
||||
boegen="3078",
|
||||
boegen=data["Bund"][0],
|
||||
eintritte="\\textasciitilde{}~200",
|
||||
botschafter="?",
|
||||
befragung=get_befragung(),
|
||||
|
@ -37,12 +39,16 @@ def update_bundesweite_ziele_tex():
|
|||
f.write("\n")
|
||||
f.write("\n")
|
||||
|
||||
def get_aktueller_stand_data():
|
||||
data_file = "data.csv"
|
||||
data = pd.read_csv(data_file)
|
||||
|
||||
return data
|
||||
|
||||
def generate_aktueller_stand_strukturaufbau():
|
||||
template = env.get_template("aktueller_stand_strukturaufbau.tex")
|
||||
|
||||
data_file = "data.csv"
|
||||
data = pd.read_csv(data_file)
|
||||
data = get_aktueller_stand_data()
|
||||
|
||||
return template.render(
|
||||
bonn=data["Bonn"],
|
||||
|
|
|
@ -3,14 +3,14 @@
|
|||
\renewcommand{\arraystretch}{1.5}
|
||||
\begin{tabularx}{\textwidth}{Xrrrr}
|
||||
\textbf{Kategorie} & \textbf{Erfolg} & \textbf{großer Erfolg} & \textbf{sehr großer Erfolg} & \textbf{Stand} \\
|
||||
Gesprächsbögen & 3100 & 3300 & 3500 & \emph{3078} \\
|
||||
Gesprächsbögen & 3100 & 3300 & 3500 & \emph{3186} \\
|
||||
ver.di-Neueintritte & 275 & - & - & \emph{\textasciitilde{}~200} \\
|
||||
Tarifbotschafter*innen & 100 & - & - & \emph{?} \\
|
||||
digitale Befragung & 1500 & 2500 & 3500 & \emph{1636}
|
||||
digitale Befragung & 1500 & 2500 & 3500 & \emph{1693}
|
||||
\end{tabularx}
|
||||
|
||||
\vspace{6em}
|
||||
{\small Stand:~2023-09-07}
|
||||
{\small Stand:~2023-09-08}
|
||||
\end{frame}
|
||||
|
||||
\endinput
|
||||
|
|
Loading…
Reference in a new issue