ff-admin-server/src/templates/protocol.template.html

37 lines
690 B
HTML
Raw Normal View History

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>
<p>{{sumary}}</p>
<h2>Anwesenheit</h2>
<ul>
{{#each presence}}
<li>{{this.firstname}} {{this.lastname}}</li>
{{/each}}
</ul>
<h2>Agenda</h2>
<ul>
{{#each agenda}}
<li>{{this}}</li>
{{/each}}
</ul>
<h2>Entscheidungen</h2>
<ul>
{{#each decisions}}
<li>{{this}}</li>
{{/each}}
</ul>
<h2>Abstimmungen</h2>
<ul>
{{#each votings}}
<li>{{this}}</li>
{{/each}}
</ul>
</body>
</html>