Change table order

This commit is contained in:
Felix Blanke 2023-08-20 00:55:22 +02:00
parent 989b9ee4fb
commit 18bb7c1c62

View File

@ -44,10 +44,10 @@ def tables(
output_str.append(tfoot)
output_str.append(table[idx:])
_print_as_html(df)
_print_as_html(
df.groupby("Bundesland", as_index=False)[["Digitale Befragung"]].sum()
)
_print_as_html(df)
return render_template("base.html", tables="\n".join(output_str))