Compare commits

..

No commits in common. "3cae0c6c10934f26efa38e71f39d6ca8515da51a" and "504c075ccf07c3c12a87717f578f0e6006475530" have entirely different histories.

2 changed files with 2 additions and 17 deletions

View File

@ -16,19 +16,4 @@
{{ image|safe }} {{ image|safe }}
{{ tables|safe }} {{ tables|safe }}
</main> </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> </article>

View File

@ -298,7 +298,7 @@ def _print_as_html(df: pd.DataFrame, output_str: list[str], total: int | None =
" </tr>", " </tr>",
] ]
) )
if total and (diff := total - df['Digitale Befragung'].sum()): if total:
tfoot.extend([ tfoot.extend([
" <tr>", " <tr>",
" <td>Weitere Bezirke</td>", " <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.append(" <td></td>")
tfoot.extend( tfoot.extend(
[ [
f" <td>{diff}</td>", f" <td>{total - df['Digitale Befragung'].sum()}</td>",
" </tr>", " </tr>",
] ]
) )