summaryrefslogtreecommitdiff
path: root/templates/checkin.html.ep
diff options
context:
space:
mode:
Diffstat (limited to 'templates/checkin.html.ep')
-rw-r--r--templates/checkin.html.ep21
1 files changed, 14 insertions, 7 deletions
diff --git a/templates/checkin.html.ep b/templates/checkin.html.ep
index 96cd80f..7e68a0b 100644
--- a/templates/checkin.html.ep
+++ b/templates/checkin.html.ep
@@ -35,13 +35,20 @@
<div class="row">
<div class="col s12">
Weitere Route:
- <ul>
- % for my $station ($train->route_post) {
- <li><%= $station %>
- (<a href="/a/checkout?station=<%= $station %>">hier auschecken</a>)
- </li>
- % }
- </ul>
+ </div>
+ </div>
+ <div class="row">
+ <div class="col s12">
+ <table>
+ <tbody>
+ % for my $station ($train->route_post) {
+ <tr>
+ <td><%= $station %></td>
+ <td><a href="/a/checkout?station=<%= $station %>">hier auschecken</a></td>
+ </tr>
+ % }
+ </tbody>
+ </table>
</div>
</div>
% }