Switched to handlebars for templateing

ref #5
This commit is contained in:
2021-02-05 20:08:47 +01:00
parent 3af76a53e3
commit 4acf3e39ce
3 changed files with 11 additions and 13 deletions

View File

@@ -6,10 +6,10 @@
</head>
<body>
<div class="page">
<p>ID: {{runner_id}}</p>
<p>FIRSTNAME: {{runner_firstname}}</p>
<p>LASTNAME: {{runner_lastname}}</p>
<p>GROUP: {{runner_groupname}}</p>
<p>ID: {{runner.id}}</p>
<p>FIRSTNAME: {{runner.firstname}}</p>
<p>LASTNAME: {{runner.lastname}}</p>
<p>GROUP: {{runner.group.name}}</p>
</div>
</body>
</html>