-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstatusTemplate.html
82 lines (76 loc) · 3.24 KB
/
statusTemplate.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<body>
<h1>Hej <?= recipientName ?>!</h1>
<section class="blocks">
<article>
<h2><?= messageTitle ?></h2>
<p>
<i>
<? if(data["daysLeft"] <= 6) {?>Det är bara <?}?><span class="large"><?= data["daysLeft"] ?> </span> <span>dag<? if(data["daysLeft"] > 1) { ?>ar<? } ?> kvar till nästa dojo.</span>
</i>
</p>
<p>
<?= message ?>
</p>
<ul>
<li>Rekommenderat max antal deltagare: <?= data["recommendedNumberOfParticipants"] ?></li>
<li>Rekommenderat max antal nybörjare: <?= data["recommendedNumberOfNewcomers"] ?></li>
</ul>
<? if (data["statistics"] != null) { ?>
<p>Aktuell anmälningsstatistik från Eventbrite:</p>
<table style="vertical-align: top;">
<tr>
<th>Antal</th>
<th>Grupp</th>
<th>Detaljer</th>
</tr>
<? for (const grupp of data["statistics"]) { ?>
<tr>
<td style="vertical-align: top;"><?= grupp.quantity_sold ?></td>
<td style="vertical-align: top;"><?= grupp.name ?></td>
<td style="vertical-align: top;">
<? for (const question of grupp["questions"]) { ?>
<? if(Object.keys(question.answers).length <=3 && question.question_text !=="Genus") { ?> <!--include only questions with max 2 answers and not genus-->
<i><?= question.question_text ?></i><br/>
<table>
<? for (const [answer, count] of Object.entries(question["answers"])) { ?>
<? if(answer!=="undefined") { ?>
<tr>
<td><?= count ?></td>
<td><?= answer ?></td>
</tr>
<? } ?>
<? } ?>
</table>
<br/>
<? } ?>
<? } ?>
</td>
</tr>
<? } ?>
</table>
<? } else { ?>
<p>Anmälan för deltagare har inte skapats på Eventbrite än eller kunde inte hittas..</p>
<? } ?>
<div class="buttons">
<a href="<?= data["registrationUrl"] ?>" class="button">Gå till anmälan för coacher</a>
</div>
<p>
Bästa hälsningar,<br/>
CoderDojo Norrköping
</p>
</article>
</section>
<br/>
<section class="blocks">
<article>
<h2>Info om att sätta platserna</h2>
<ul>
<li><a href="https://docs.google.com/document/d/1fDoDkiv9Pk9etFLyivi0xVAi4dUK46sL7vqxSFG4zEs">Guide till eventbrite</a></li>
<li>Om du ökar platserna, kolla om det står någon på väntelistan (Order options->Manage Waitlist) och släpp platserna till dem.</li>
</ul>
</article>
</section>
</body>
</html>