+
+
+ {{ item.trainCategoryCode }}
+ {{ item.trainNo }}
+
+
+
+ {{ item.route.replace('|', ' - ') }}
+
+
+
+ {{ item.sceneriesString.replaceAll('%', ' - ') }}
+
+
+
+
+ {{
+ !item.terminated
+ ? $t('history.timetable-active')
+ : item.fulfilled
+ ? $t('history.timetable-fulfilled')
+ : $t('history.timetable-abandoned')
+ }}
+
+
+
+
+
+ {{ $t('history.driver-name') }}
+ {{ item.driverName }}
+
+
+ {{ $t('history.route-length') }}
+ {{ !item.fulfilled ? item.currentDistance + ' /' : '' }}
+ {{ item.routeDistance }} km
+
+
+
+ {{ $t('history.station-count') }}
+ {{ item.confirmedStopsCount }} /
+ {{ item.allStopsCount }}
+
+
+
+ {{ $t('history.begins-at') }}
+ {{ localeDate(item.beginDate, $i18n.locale) }}
+
+
+
+ {{ $t('history.terminates-at') }}
+ {{ localeDate(item.scheduledEndDate, $i18n.locale) }}
+
+
+
+ {{ $t('history.terminates-at-actual') }}
+ {{ localeDate(item.endDate, $i18n.locale) }}
+
+
+