diff --git a/templates/_connections.html.ep b/templates/_connections.html.ep
index 2506829..cd9edc3 100644
--- a/templates/_connections.html.ep
+++ b/templates/_connections.html.ep
@@ -29,18 +29,24 @@
% for my $res (@{$connections}) {
% my ($train, $via) = @{$res};
+ % my $td_class = '';
+ % my $link_class = 'action-checkin';
+ % if ($train->departure_is_cancelled) {
+ % $td_class = 'cancelled';
+ % $link_class = 'action-cancelled-from';
+ % }
-
+ |
% if ($checkin_from) {
- <%= $train->line %>
+ <%= $train->line %>
% }
% else {
%= $train->line
% }
|
-
+ |
% if ($checkin_from) {
- <%= $via %>
+ <%= $via %>
% }
% else {
%= $via
|