Terminwahl/terminwahl_back/templates/confirmed.html.hbs

47 lines
1.7 KiB
Handlebars

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8" />
<title>Yew App</title>
<link rel="stylesheet" href="/{{ css_file }}" />
<meta name="keywords" content="Termine,Waldorfschule,Lehrersprechtag,Lehrerinnensprechtag" />
<meta name="author" content="Franz Dietrich" />
<meta name="description" content="Termine buchen für den Lehrersprechtag der Waldorfschule Uhlandshöhe" />
</head>
<body>
<section class="hero is-warning">
<div class="hero-body">
<p class="title has-text-link">
Elternsprechtag
</p>
<p class="subtitle">
Am 28.02.23
</p>
</div>
</section>
<div class="container">
<div class="section">
<h1 class="title is-1">Bestätigt</h1>
<p>Die unten stehenden Treffen sind bestätigt.</p>
<p> Sollten Sie eines oder mehrere Treffen doch nicht wahrnehmen können,
sagen Sie diese bitte möglichst früh ab, sodass Sie von anderen wiederum gebucht werden können.</p>
<div class="mt-6">
{{#each appointments as |appoint|}}
<div class="columns is-centered"><div class="column is-6">
<div class="box"><div class="columns is-vcentered">
<div class="column">
<b>{{appoint.teacher.ansprache}} {{appoint.teacher.last_name}}: {{time_of appoint.slot.start_time}} - {{time_of appoint.slot.end_time}}</b>
</div>
<div class="column">
<a class="button is-small" href="/cancel/{{appoint.teacher.id}}/{{appoint.slot.id}}/{{ ../validation_key }}">
<span class="fas fa-ban fa-fw"></span>
<span class="ml-2">Dieses Treffen Absagen</span>
</a></div></div></div></div></div>
{{/each}}
</div></div>
</div>
</body>
</html>