diff --git a/templates/_checked_in.html.ep b/templates/_checked_in.html.ep
index 843caf3..249997a 100644
--- a/templates/_checked_in.html.ep
+++ b/templates/_checked_in.html.ep
@@ -70,17 +70,19 @@
% my $direction = $wr->direction == 100 ? '→' : '←';
+ % my $rev = 0;
% if ($journey->{dep_direction}) {
% $direction = $journey->{dep_direction} eq 'l' ? '◀' : '▶';
+ % $rev = (($journey->{dep_direction} eq 'l' ? 0 : 100) == $wr->direction) ? 0 : 1;
% }
%= $direction
% my $had_entry = 0;
- % for my $group ($wr->groups) {
+ % for my $group ($rev ? reverse $wr->groups : $wr->groups) {
% if ($had_entry) {
% $had_entry = 0;
•
% }
- % for my $wagon ($group->carriages) {
+ % for my $wagon ($rev ? reverse $group->carriages : $group->carriages) {
% if (not ($wagon->is_locomotive or $wagon->is_powercar)) {
% $had_entry = 1;
% if ($wagon->is_closed) {