Skip to content

Commit

Permalink
feat(rtf): update info
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Dünkelmann <[email protected]>
  • Loading branch information
MartinX3 committed Apr 7, 2023
1 parent 0b17e71 commit 74a1a94
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
12 changes: 10 additions & 2 deletions src/components/layouts/default/DRTFPopup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,17 @@
<br />
<br />
<v-row dense>
<v-col class="text-right">Tempo:</v-col>
<v-col class="text-right" cols="2">Tempo:</v-col>
<v-col class="text-left">max. 20er Schnitt</v-col>
</v-row>
<v-row no-gutters>
<v-col class="text-right" cols="2">
<v-icon color="secondary" x-small left>{{ icons.mdiArrowRightBottom }}</v-icon>
</v-col>
<v-col class="text-left">Der/die langsamste Fahrer:in bestimmt die Geschwindigkeit.</v-col>
</v-row>
<v-row dense>
<v-col class="text-right">Startzeiten:</v-col>
<v-col class="text-right" cols="2">Startzeiten:</v-col>
<v-col class="text-left">8 Uhr und ca. 11 Uhr</v-col>
</v-row>
<br />
Expand All @@ -39,11 +45,13 @@

<script lang="ts" setup>
import { ref } from 'vue'
import { mdiArrowRightBottom } from '@mdi/js'
import { useCalendarStore } from '~/store/events/Calendar'
import useDateTime from '~/utils/DateTime'
const dateTime = useDateTime()
const icons = { mdiArrowRightBottom }
const dialog = ref(true)
const nextRTF = useCalendarStore().nextRTF()
</script>
11 changes: 8 additions & 3 deletions src/store/events/Tour.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,13 @@ export const useTourStore = defineStore('tour', {
`Wir bieten in diesem Jahr erstmalig zwei geführte Touren (51 km) für Neueinsteiger an!
<ul style="white-space: normal">
<li>Tempo: max. 20er Schnitt</li>
<li>Startzeiten: 8 Uhr und ca. 11 Uhr</li>
<li>
Tempo: max. 20er Schnitt
<ul style="white-space: normal">
<li>Der/die langsamste Fahrer:in bestimmt die Geschwindigkeit.</li>
</ul>
</li>
<li>Startzeiten: 8 Uhr und ca. 11 Uhr</li>
</ul>`
)
.build(),
Expand Down Expand Up @@ -169,7 +174,7 @@ Gemeinsam geht es auf dem Radweg Richtung Altenrath weiter.`
.setImageUrl('content.rtc-koeln.de/pages/events/tours/events/rtfs/2023 Flyer.jpg')
.build()
)
.setLastChange('2023-03-22')
.setLastChange('2023-04-07')
.setPopup(
`Natürlich sind all unsere Strecken ausgeschildert.
Expand Down

0 comments on commit 74a1a94

Please sign in to comment.