{{ playerInfo.driverStats.countFulfilled }} /
{{ playerInfo.driverStats.countAll }} ({{
getCountPercentage(
playerInfo.driverStats.countFulfilled,
playerInfo.driverStats.countAll,
2
)
}}%)
- {{ t('profile.stats.fulfilled-timetables') }}
{{ playerInfo.driverStats.currentDistanceTotal?.toFixed(2) }} /
{{ playerInfo.driverStats.routeDistanceTotal?.toFixed(2) }} ({{
getCountPercentage(
playerInfo.driverStats.currentDistanceTotal || 0,
playerInfo.driverStats.routeDistanceTotal || 0,
2
)
}}%)
- {{ t('profile.stats.route-distance') }}
{{ playerInfo.driverStats.confirmedStopsTotal }} /
{{ playerInfo.driverStats.allStopsTotal }} ({{
getCountPercentage(
playerInfo.driverStats.confirmedStopsTotal || 0,
playerInfo.driverStats.allStopsTotal || 0,
2
)
}}%)
- {{ t('profile.stats.confirmed-stops') }}
{{ playerInfo.driverStats.routeDistanceMax || 0 }}km -
{{ t('profile.stats.longest-timetable') }}
{{ playerInfo.driverStats.routeDistanceAvg?.toFixed(2) || 0 }}km
- {{ t('profile.stats.avg-timetable-length') }}