ff-admin-server/src/templates/protocol.template.html
2024-10-19 16:24:41 +02:00

41 lines
942 B
HTML

<!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>
<p>Ausdruck Nr {{iteration}}</p>
<br />
<p>{{{summary}}}</p>
<h2>Anwesenheit</h2>
<ul>
{{#each presence}}
<li>{{this.firstname}} {{this.lastname}}</li>
{{/each}}
</ul>
<h2>Agenda</h2>
<ul>
{{#each agenda}}
<li>{{this.topic}}: {{{this.context}}}</li>
{{/each}}
</ul>
<h2>Entscheidungen</h2>
<ul>
{{#each decisions}}
<li>{{this.topic}}: {{{this.context}}}</li>
{{/each}}
</ul>
<h2>Abstimmungen - <small>(für|enthalten|gegen)</small></h2>
<ul>
{{#each votings}}
<li>
{{this.topic}}: {{{this.context}}} <br />
({{this.favour}}|{{this.abstain}}|{{this.against}})
</li>
{{/each}}
</ul>
</body>
</html>