Fix empty td tags
This commit is contained in:
parent
4e43916fb1
commit
3bb4f432e4
2
wsgi.py
2
wsgi.py
@ -183,7 +183,7 @@ def tables(
|
|||||||
" <td>Gesamt</td>",
|
" <td>Gesamt</td>",
|
||||||
]
|
]
|
||||||
for i in range(len(df.columns) - 2):
|
for i in range(len(df.columns) - 2):
|
||||||
tfoot.append(" <td/>")
|
tfoot.append(" <td></td>")
|
||||||
tfoot.extend(
|
tfoot.extend(
|
||||||
[
|
[
|
||||||
f" <td>{df['Digitale Befragung'].sum()}</td>",
|
f" <td>{df['Digitale Befragung'].sum()}</td>",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user