Compare commits
No commits in common. "3cae0c6c10934f26efa38e71f39d6ca8515da51a" and "504c075ccf07c3c12a87717f578f0e6006475530" have entirely different histories.
3cae0c6c10
...
504c075ccf
@ -16,19 +16,4 @@
|
||||
{{ image|safe }}
|
||||
{{ tables|safe }}
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<p>Ergebnisse einzelner Landesbezirke:
|
||||
<a href="/">Bundesweit</a> |
|
||||
<a href="/BaWü">Baden-Württemberg</a> |
|
||||
<a href="/Bayern">Bayern</a> |
|
||||
<a href="/BBR">Berlin-Brandenburg</a> |
|
||||
<a href="/Hamburg">Hamburg</a> |
|
||||
<a href="/NDS">Niedersachsen-Bremen</a> |
|
||||
<a href="/Nord">Nord</a> |
|
||||
<a href="/NRW">NRW</a> |
|
||||
<a href="/RLP">Rheinland-Pfalz-Saarland</a> |
|
||||
<a href="/SAT">Sachsen, Sachsen-Anhalt, Thüringen</a>
|
||||
</p>
|
||||
</footer>
|
||||
</article>
|
||||
|
||||
4
wsgi.py
4
wsgi.py
@ -298,7 +298,7 @@ def _print_as_html(df: pd.DataFrame, output_str: list[str], total: int | None =
|
||||
" </tr>",
|
||||
]
|
||||
)
|
||||
if total and (diff := total - df['Digitale Befragung'].sum()):
|
||||
if total:
|
||||
tfoot.extend([
|
||||
" <tr>",
|
||||
" <td>Weitere Bezirke</td>",
|
||||
@ -307,7 +307,7 @@ def _print_as_html(df: pd.DataFrame, output_str: list[str], total: int | None =
|
||||
tfoot.append(" <td></td>")
|
||||
tfoot.extend(
|
||||
[
|
||||
f" <td>{diff}</td>",
|
||||
f" <td>{total - df['Digitale Befragung'].sum()}</td>",
|
||||
" </tr>",
|
||||
]
|
||||
)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user