PreferencesTab.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <v-container>
  3. <v-row>
  4. <span>{{ $t('start_date_of_financial_season')}}</span>
  5. <UiDatePicker v-model="financialSeasonStartDate"></UiDatePicker>
  6. </v-row>
  7. <v-row>
  8. <span>{{ $t('start_date_of_activity_season')}}</span>
  9. <UiDatePicker v-model="activitySeasonStartDate"></UiDatePicker>
  10. </v-row>
  11. <v-row>
  12. <span>{{ $t('start_date_of_courses')}}</span>
  13. <UiDatePicker v-model="coursesStartDate"></UiDatePicker>
  14. </v-row>
  15. <v-row>
  16. <span>{{ $t('end_date_of_courses')}}</span>
  17. <UiDatePicker v-model="coursesEndDate"></UiDatePicker>
  18. </v-row>
  19. <v-row>
  20. <v-checkbox :label="$t('show_adherents_list_and_their_coordinates') + ' *'"></v-checkbox>
  21. </v-row>
  22. <v-row>
  23. <v-checkbox :label="$t('students_are_also_association_members') + ' *'"></v-checkbox>
  24. </v-row>
  25. </v-container>
  26. </template>
  27. <script setup lang="ts">
  28. const financialSeasonStartDate: Date = new Date()
  29. const activitySeasonStartDate: Date = new Date()
  30. const coursesStartDate: Date = new Date()
  31. const coursesEndDate: Date = new Date()
  32. </script>
  33. <style scoped lang="scss">
  34. </style>