2026-05-07 13:02:04 +02:00
|
|
|
|
{# scorecard.html — Social-Card-Render-Template
|
|
|
|
|
|
|
|
|
|
|
|
Drei Formate, ueber `width`/`height` parametrisiert:
|
|
|
|
|
|
- 1200×630 (og) — LinkedIn/Twitter-OG; horizontal mit Matrix rechts
|
|
|
|
|
|
- 1080×1080 (square) — Instagram klassisch; vertikal gestackt
|
|
|
|
|
|
- 1080×1350 (portrait) — Instagram 4:5 Hochformat (Default Feed);
|
|
|
|
|
|
Title + grosser Score + grosse Matrix + Begruendung
|
|
|
|
|
|
|
|
|
|
|
|
`is_portrait` und `is_og` schalten Layout-Varianten in den CSS-Switches.
|
|
|
|
|
|
#}
|
|
|
|
|
|
{% set is_og = (width >= 1200) %}
|
|
|
|
|
|
{% set is_portrait = (height > width) %}
|
|
|
|
|
|
{% set is_square = (not is_og and not is_portrait) %}
|
2026-05-06 23:44:21 +02:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
<html lang="de">
|
|
|
|
|
|
<head>
|
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
|
<title>Scorecard — {{ assessment.title }}</title>
|
|
|
|
|
|
<style>
|
|
|
|
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
|
|
|
|
html, body { font-family: 'Source Sans Pro', 'Helvetica Neue', sans-serif; }
|
|
|
|
|
|
body {
|
|
|
|
|
|
width: {{ width }}px;
|
|
|
|
|
|
height: {{ height }}px;
|
|
|
|
|
|
background: linear-gradient(135deg, #f8faf2 0%, #e9ede0 100%);
|
|
|
|
|
|
color: #1f1f1f;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
}
|
|
|
|
|
|
.card {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
2026-05-07 13:06:46 +02:00
|
|
|
|
padding: {% if is_og %}28px 38px{% elif is_portrait %}34px 38px 24px{% else %}26px 30px{% endif %};
|
2026-05-06 23:44:21 +02:00
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
}
|
|
|
|
|
|
.header {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: baseline;
|
|
|
|
|
|
border-bottom: 2px solid #009DA5;
|
|
|
|
|
|
padding-bottom: 10px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.kicker {
|
|
|
|
|
|
font-family: 'Source Code Pro', monospace;
|
2026-05-07 13:02:04 +02:00
|
|
|
|
font-size: {% if is_portrait %}13pt{% else %}12pt{% endif %};
|
2026-05-06 23:44:21 +02:00
|
|
|
|
color: #009DA5;
|
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
letter-spacing: 0.1em;
|
|
|
|
|
|
}
|
|
|
|
|
|
.meta {
|
|
|
|
|
|
font-family: 'Source Code Pro', monospace;
|
|
|
|
|
|
font-size: 11pt;
|
|
|
|
|
|
color: #555;
|
|
|
|
|
|
}
|
2026-05-07 13:02:04 +02:00
|
|
|
|
|
|
|
|
|
|
/* ── og + square: zweispaltig (og) bzw. einspaltig (square) ── */
|
2026-05-06 23:44:21 +02:00
|
|
|
|
.body-grid {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
display: grid;
|
2026-05-07 13:02:04 +02:00
|
|
|
|
grid-template-columns: {% if is_og %}1.4fr 1fr{% else %}1fr{% endif %};
|
2026-05-06 23:44:21 +02:00
|
|
|
|
gap: 28px;
|
|
|
|
|
|
margin-top: 22px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.left-col h1 {
|
2026-05-07 13:02:04 +02:00
|
|
|
|
font-size: {% if is_og %}28pt{% else %}22pt{% endif %};
|
2026-05-06 23:44:21 +02:00
|
|
|
|
line-height: 1.18;
|
|
|
|
|
|
margin-bottom: 14px;
|
|
|
|
|
|
color: #1f1f1f;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
}
|
|
|
|
|
|
.left-col .fraktionen {
|
|
|
|
|
|
font-family: 'Source Code Pro', monospace;
|
|
|
|
|
|
font-size: 11pt;
|
|
|
|
|
|
color: #555;
|
|
|
|
|
|
margin-bottom: 18px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.left-col .fraktionen .pill {
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
padding: 2px 10px;
|
|
|
|
|
|
background: rgba(136, 158, 51, 0.15);
|
|
|
|
|
|
color: #44570a;
|
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.left-col .verdict {
|
|
|
|
|
|
font-size: 14pt;
|
|
|
|
|
|
color: #1a7f37;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.left-col .summary {
|
|
|
|
|
|
font-size: 12pt;
|
|
|
|
|
|
line-height: 1.55;
|
|
|
|
|
|
color: #333;
|
|
|
|
|
|
display: -webkit-box;
|
2026-05-07 13:02:04 +02:00
|
|
|
|
-webkit-line-clamp: {% if is_og %}6{% else %}4{% endif %};
|
2026-05-06 23:44:21 +02:00
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
}
|
|
|
|
|
|
.right-col {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
|
padding-top: 8px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.score-big {
|
|
|
|
|
|
font-family: 'Source Code Pro', monospace;
|
2026-05-07 13:02:04 +02:00
|
|
|
|
font-size: {% if is_og %}88pt{% else %}72pt{% endif %};
|
2026-05-06 23:44:21 +02:00
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
line-height: 1;
|
|
|
|
|
|
color: {{ score_color }};
|
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.score-label {
|
|
|
|
|
|
font-family: 'Source Code Pro', monospace;
|
|
|
|
|
|
font-size: 11pt;
|
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
letter-spacing: 0.1em;
|
|
|
|
|
|
color: #555;
|
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
|
}
|
2026-05-07 13:02:04 +02:00
|
|
|
|
|
|
|
|
|
|
/* ── Matrix-Zellen (alle Formate gleiche Klassen) ── */
|
2026-05-06 23:44:21 +02:00
|
|
|
|
.matrix .cell {
|
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
font-family: 'Source Code Pro', monospace;
|
2026-05-07 13:02:04 +02:00
|
|
|
|
font-size: {% if is_portrait %}19pt{% elif is_og %}10pt{% else %}10pt{% endif %};
|
2026-05-06 23:44:21 +02:00
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
}
|
|
|
|
|
|
.cell.r-pp { background: #889E33; color: #fff; }
|
|
|
|
|
|
.cell.r-p { background: #cddaa1; color: #44570a; }
|
|
|
|
|
|
.cell.r-0 { background: #f0f0f0; color: #888; }
|
|
|
|
|
|
.cell.r-n { background: #efc9c3; color: #931515; }
|
|
|
|
|
|
.cell.r-nn { background: #9A2A2A; color: #fff; }
|
2026-05-07 13:02:04 +02:00
|
|
|
|
|
|
|
|
|
|
/* ── og/square Matrix-Container ── */
|
|
|
|
|
|
.matrix-compact {
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-columns: repeat(5, 1fr);
|
|
|
|
|
|
grid-template-rows: repeat(5, 1fr);
|
|
|
|
|
|
gap: 2px;
|
|
|
|
|
|
width: {% if is_og %}220px{% else %}180px{% endif %};
|
|
|
|
|
|
aspect-ratio: 1 / 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-05-07 13:06:46 +02:00
|
|
|
|
/* ── portrait Layout — kompakt, weniger Rand ── */
|
2026-05-07 13:02:04 +02:00
|
|
|
|
.portrait-body {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
2026-05-07 13:06:46 +02:00
|
|
|
|
gap: 16px;
|
|
|
|
|
|
margin-top: 16px;
|
2026-05-07 13:02:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
.portrait-title {
|
2026-05-07 13:06:46 +02:00
|
|
|
|
font-size: 36pt;
|
|
|
|
|
|
line-height: 1.1;
|
2026-05-07 13:02:04 +02:00
|
|
|
|
color: #1f1f1f;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
}
|
|
|
|
|
|
.portrait-fraktionen {
|
|
|
|
|
|
font-family: 'Source Code Pro', monospace;
|
2026-05-07 13:06:46 +02:00
|
|
|
|
font-size: 14pt;
|
2026-05-07 13:02:04 +02:00
|
|
|
|
color: #555;
|
|
|
|
|
|
}
|
|
|
|
|
|
.portrait-fraktionen .pill {
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
padding: 3px 12px;
|
|
|
|
|
|
background: rgba(136, 158, 51, 0.18);
|
|
|
|
|
|
color: #44570a;
|
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
|
margin-right: 6px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.portrait-score-row {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 28px;
|
2026-05-07 13:06:46 +02:00
|
|
|
|
padding: 12px 0;
|
2026-05-07 13:02:04 +02:00
|
|
|
|
border-top: 1px solid rgba(0,0,0,0.08);
|
|
|
|
|
|
border-bottom: 1px solid rgba(0,0,0,0.08);
|
|
|
|
|
|
}
|
|
|
|
|
|
.portrait-score-num {
|
|
|
|
|
|
font-family: 'Source Code Pro', monospace;
|
2026-05-07 13:06:46 +02:00
|
|
|
|
font-size: 130pt;
|
2026-05-07 13:02:04 +02:00
|
|
|
|
font-weight: 700;
|
2026-05-07 13:06:46 +02:00
|
|
|
|
line-height: 0.92;
|
2026-05-07 13:02:04 +02:00
|
|
|
|
color: {{ score_color }};
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
}
|
2026-05-07 13:06:46 +02:00
|
|
|
|
.portrait-score-num .slash { font-size: 64pt; opacity: 0.45; }
|
2026-05-07 13:02:04 +02:00
|
|
|
|
.portrait-score-side {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.portrait-score-label {
|
|
|
|
|
|
font-family: 'Source Code Pro', monospace;
|
2026-05-07 13:06:46 +02:00
|
|
|
|
font-size: 13pt;
|
2026-05-07 13:02:04 +02:00
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
letter-spacing: 0.12em;
|
|
|
|
|
|
color: #555;
|
|
|
|
|
|
}
|
|
|
|
|
|
.portrait-verdict {
|
2026-05-07 13:06:46 +02:00
|
|
|
|
font-size: 28pt;
|
2026-05-07 13:02:04 +02:00
|
|
|
|
color: {{ score_color }};
|
|
|
|
|
|
font-weight: 700;
|
2026-05-07 13:06:46 +02:00
|
|
|
|
line-height: 1.12;
|
2026-05-07 13:02:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
.portrait-matrix-block {
|
|
|
|
|
|
display: flex;
|
2026-05-07 13:06:46 +02:00
|
|
|
|
align-items: stretch;
|
|
|
|
|
|
gap: 22px;
|
2026-05-07 13:02:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
.portrait-matrix {
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-columns: repeat(5, 1fr);
|
|
|
|
|
|
grid-template-rows: repeat(5, 1fr);
|
|
|
|
|
|
gap: 4px;
|
2026-05-07 13:06:46 +02:00
|
|
|
|
width: 460px;
|
|
|
|
|
|
height: 460px;
|
2026-05-07 13:02:04 +02:00
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
.portrait-matrix-legend {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
font-family: 'Source Code Pro', monospace;
|
2026-05-07 13:06:46 +02:00
|
|
|
|
font-size: 12pt;
|
2026-05-07 13:02:04 +02:00
|
|
|
|
color: #555;
|
|
|
|
|
|
line-height: 1.5;
|
2026-05-07 13:06:46 +02:00
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
justify-content: center;
|
2026-05-07 13:02:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
.portrait-matrix-legend .l-title {
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
color: #009DA5;
|
2026-05-07 13:06:46 +02:00
|
|
|
|
margin-bottom: 10px;
|
2026-05-07 13:02:04 +02:00
|
|
|
|
letter-spacing: 0.06em;
|
2026-05-07 13:06:46 +02:00
|
|
|
|
font-size: 13pt;
|
2026-05-07 13:02:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
.portrait-matrix-legend ul {
|
|
|
|
|
|
list-style: none;
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
.portrait-matrix-legend li {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
2026-05-07 13:06:46 +02:00
|
|
|
|
gap: 8px;
|
|
|
|
|
|
margin-bottom: 6px;
|
2026-05-07 13:02:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
.portrait-matrix-legend .swatch {
|
2026-05-07 13:06:46 +02:00
|
|
|
|
width: 18px; height: 18px; border-radius: 2px; flex-shrink: 0;
|
2026-05-07 13:02:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
.portrait-summary {
|
2026-05-07 13:06:46 +02:00
|
|
|
|
font-size: 15pt;
|
|
|
|
|
|
line-height: 1.5;
|
2026-05-07 13:02:04 +02:00
|
|
|
|
color: #333;
|
|
|
|
|
|
display: -webkit-box;
|
2026-05-07 13:06:46 +02:00
|
|
|
|
-webkit-line-clamp: 6;
|
2026-05-07 13:02:04 +02:00
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ── Footer ── */
|
2026-05-06 23:44:21 +02:00
|
|
|
|
.footer {
|
|
|
|
|
|
position: absolute;
|
2026-05-07 13:06:46 +02:00
|
|
|
|
bottom: {% if is_og %}12px{% elif is_portrait %}16px{% else %}10px{% endif %};
|
|
|
|
|
|
left: {% if is_og %}38px{% elif is_portrait %}38px{% else %}30px{% endif %};
|
|
|
|
|
|
right: {% if is_og %}38px{% elif is_portrait %}38px{% else %}30px{% endif %};
|
2026-05-06 23:44:21 +02:00
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
font-family: 'Source Code Pro', monospace;
|
|
|
|
|
|
font-size: 9pt;
|
|
|
|
|
|
color: #888;
|
|
|
|
|
|
border-top: 1px solid rgba(0,0,0,0.1);
|
2026-05-07 13:06:46 +02:00
|
|
|
|
padding-top: 6px;
|
2026-05-06 23:44:21 +02:00
|
|
|
|
}
|
|
|
|
|
|
.footer .brand { color: #009DA5; font-weight: 700; letter-spacing: 0.06em; }
|
|
|
|
|
|
</style>
|
|
|
|
|
|
</head>
|
|
|
|
|
|
<body>
|
|
|
|
|
|
<div class="card">
|
|
|
|
|
|
<div class="header">
|
|
|
|
|
|
<div class="kicker">GWÖ-Bewertung · {{ bundesland }} · {{ assessment.drucksache }}</div>
|
|
|
|
|
|
<div class="meta">{{ datum }}</div>
|
|
|
|
|
|
</div>
|
2026-05-07 13:02:04 +02:00
|
|
|
|
|
|
|
|
|
|
{% if is_portrait %}
|
|
|
|
|
|
<div class="portrait-body">
|
|
|
|
|
|
<div class="portrait-title">{{ assessment.title|truncate(150, end="…") }}</div>
|
|
|
|
|
|
{% if fraktionen %}
|
|
|
|
|
|
<div class="portrait-fraktionen">
|
|
|
|
|
|
Eingebracht von:
|
|
|
|
|
|
{% for f in fraktionen %}<span class="pill">{{ f }}</span>{% endfor %}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
<div class="portrait-score-row">
|
|
|
|
|
|
<div class="portrait-score-num">{{ "%.1f"|format(assessment.gwoe_score) }}<span class="slash">/10</span></div>
|
|
|
|
|
|
<div class="portrait-score-side">
|
|
|
|
|
|
<div class="portrait-score-label">Gemeinwohl-Score</div>
|
|
|
|
|
|
<div class="portrait-verdict">{{ assessment.empfehlung.value }}</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="portrait-matrix-block">
|
|
|
|
|
|
<div class="portrait-matrix matrix">
|
|
|
|
|
|
{% for r in ['A','B','C','D','E'] %}
|
|
|
|
|
|
{% for c in ['1','2','3','4','5'] %}
|
|
|
|
|
|
{% set cell = matrix_lookup.get(r ~ c, {}) %}
|
|
|
|
|
|
{% set rt = cell.get('rating', 0) %}
|
|
|
|
|
|
<div class="cell {% if rt >= 4 %}r-pp{% elif rt >= 1 %}r-p{% elif rt == 0 %}r-0{% elif rt <= -4 %}r-nn{% else %}r-n{% endif %}">{% if rt >= 4 %}++{% elif rt >= 1 %}+{% elif rt == 0 %}·{% elif rt <= -4 %}−−{% else %}−{% endif %}</div>
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="portrait-matrix-legend">
|
|
|
|
|
|
<div class="l-title">Matrix 5×5</div>
|
|
|
|
|
|
<ul>
|
|
|
|
|
|
<li><span class="swatch" style="background:#889E33;"></span>++ stark fördernd</li>
|
|
|
|
|
|
<li><span class="swatch" style="background:#cddaa1;"></span>+ fördernd</li>
|
|
|
|
|
|
<li><span class="swatch" style="background:#f0f0f0;border:1px solid #ccc;"></span>○ neutral</li>
|
|
|
|
|
|
<li><span class="swatch" style="background:#efc9c3;"></span>− widersprechend</li>
|
|
|
|
|
|
<li><span class="swatch" style="background:#9A2A2A;"></span>−− stark widersprechend</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="portrait-summary">{{ assessment.gwoe_begruendung|truncate(360, end="…") }}</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{% else %}
|
2026-05-06 23:44:21 +02:00
|
|
|
|
<div class="body-grid">
|
|
|
|
|
|
<div class="left-col">
|
|
|
|
|
|
<h1>{{ assessment.title|truncate(100, end="…") }}</h1>
|
|
|
|
|
|
{% if fraktionen %}
|
|
|
|
|
|
<div class="fraktionen">
|
|
|
|
|
|
{% for f in fraktionen %}<span class="pill">{{ f }}</span>{% endfor %}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
<div class="verdict">{{ assessment.empfehlung.value }}</div>
|
|
|
|
|
|
<div class="summary">{{ assessment.gwoe_begruendung|truncate(420, end="…") }}</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="right-col">
|
|
|
|
|
|
<div class="score-big">{{ "%.1f"|format(assessment.gwoe_score) }}</div>
|
|
|
|
|
|
<div class="score-label">GWÖ-Score · 0–10</div>
|
2026-05-07 13:02:04 +02:00
|
|
|
|
<div class="matrix-compact matrix">
|
2026-05-06 23:44:21 +02:00
|
|
|
|
{% for r in ['A','B','C','D','E'] %}
|
|
|
|
|
|
{% for c in ['1','2','3','4','5'] %}
|
|
|
|
|
|
{% set cell = matrix_lookup.get(r ~ c, {}) %}
|
|
|
|
|
|
{% set rt = cell.get('rating', 0) %}
|
2026-05-07 13:02:04 +02:00
|
|
|
|
<div class="cell {% if rt >= 4 %}r-pp{% elif rt >= 1 %}r-p{% elif rt == 0 %}r-0{% elif rt <= -4 %}r-nn{% else %}r-n{% endif %}">{% if rt >= 4 %}++{% elif rt >= 1 %}+{% elif rt == 0 %}·{% elif rt <= -4 %}−−{% else %}−{% endif %}</div>
|
2026-05-06 23:44:21 +02:00
|
|
|
|
{% endfor %}
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-05-07 13:02:04 +02:00
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
2026-05-06 23:44:21 +02:00
|
|
|
|
<div class="footer">
|
|
|
|
|
|
<span><span class="brand">gwoe.toppyr.de</span> · automatische Gemeinwohl-Bilanzierung</span>
|
|
|
|
|
|
<span>{{ assessment.drucksache }}</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</body>
|
|
|
|
|
|
</html>
|