{{ $t("tourdetails.listview") }}
{{ tourData.title }}
{{ (Math.floor(tourData.duration / 60) < 10 ? "0" + Math.floor(tourData.duration / 60) :
Math.floor(tourData.duration / 60)) + ":" + (tourData.duration % 60 < 10 ? "0" + tourData.duration % 60 :
tourData.duration % 60) }}
{{ $t("units.hr") }}
{{ (tourData.distance / 1000) % 1 > 0 ? (tourData.distance / 1000).toFixed(1) : (tourData.distance / 1000)
}}
{{ $t("units.km") }}
{{ Math.round(tourData.ascent) }}
{{ $t("units.m") }}
{{ Math.round(tourData.descent) }}
{{ $t("units.m") }}
{{ $t("tourdetails.details") }} | |
---|---|
{{ $t("tourdata.difficulty") }} | {{ $t(`filters.fields.difficulty.values.${tourData.difficulty}`) }} |
{{ $t("tourdata.duration") }} | {{ (Math.floor(tourData.duration / 60) < 10 ? "0" + Math.floor(tourData.duration / 60) : Math.floor(tourData.duration / 60)) + ":" + (tourData.duration % 60 < 10 ? "0" + tourData.duration % 60 : tourData.duration % 60) }} {{ $t("units.hr") }} |
{{ $t("tourdata.distance") }} | {{ (tourData.distance / 1000) % 1 > 0 ? (tourData.distance / 1000).toFixed(1) : (tourData.distance / 1000) }} {{ $t("units.km") }} |
{{ $t("tourdata.ascent") }} | {{ Math.round(tourData.ascent) }} {{ $t("units.m") }} |
{{ $t("tourdata.descent") }} | {{ Math.round(tourData.descent) }} {{ $t("units.m") }} |