2024-10-18 15:23:51 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title>Protokoll</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>{{title}}</h1>
|
|
|
|
<p>Am {{date}} von {{start}} Uhr bis {{end}} Uhr</p>
|
2024-10-19 16:24:41 +02:00
|
|
|
<p>Ausdruck Nr {{iteration}}</p>
|
|
|
|
<br />
|
|
|
|
<p>{{{summary}}}</p>
|
2024-10-18 15:23:51 +02:00
|
|
|
<h2>Anwesenheit</h2>
|
|
|
|
<ul>
|
|
|
|
{{#each presence}}
|
|
|
|
<li>{{this.firstname}} {{this.lastname}}</li>
|
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
<h2>Agenda</h2>
|
|
|
|
<ul>
|
|
|
|
{{#each agenda}}
|
2024-10-19 16:24:41 +02:00
|
|
|
<li>{{this.topic}}: {{{this.context}}}</li>
|
2024-10-18 15:23:51 +02:00
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
<h2>Entscheidungen</h2>
|
|
|
|
<ul>
|
|
|
|
{{#each decisions}}
|
2024-10-19 16:24:41 +02:00
|
|
|
<li>{{this.topic}}: {{{this.context}}}</li>
|
2024-10-18 15:23:51 +02:00
|
|
|
{{/each}}
|
|
|
|
</ul>
|
2024-10-19 16:24:41 +02:00
|
|
|
<h2>Abstimmungen - <small>(für|enthalten|gegen)</small></h2>
|
2024-10-18 15:23:51 +02:00
|
|
|
<ul>
|
|
|
|
{{#each votings}}
|
2024-10-19 16:24:41 +02:00
|
|
|
<li>
|
|
|
|
{{this.topic}}: {{{this.context}}} <br />
|
|
|
|
({{this.favour}}|{{this.abstain}}|{{this.against}})
|
|
|
|
</li>
|
2024-10-18 15:23:51 +02:00
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
</body>
|
|
|
|
</html>
|