| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <template>
- <v-container>
- <v-row>
- <v-col cols="6">
- <UiInputDatePicker
- v-model="parameters.financialDate"
- label="start_date_of_financial_season"
- field="financialDate"
- />
- </v-col>
- <v-col cols="6">
- <UiInputDatePicker
- v-model="parameters.musicalDate"
- label="start_date_of_activity_season"
- field="musicalDate"
- />
- </v-col>
- </v-row>
- <v-row>
- <v-col cols="6">
- <UiInputDatePicker
- v-model="parameters.startCourseDate"
- label="start_date_of_courses"
- field="startCourseDate"
- />
- </v-col>
- <v-col cols="6">
- <UiInputDatePicker
- v-model="parameters.endCourseDate"
- label="end_date_of_courses"
- field="endCourseDate"
- />
- </v-col>
- </v-row>
- <v-row>
- <v-col cols="6">
- <UiInputCheckbox
- v-model="parameters.showAdherentList"
- field="showAdherentList"
- label="show_adherents_list_and_their_coordinates"
- />
- </v-col>
- <v-col cols="6">
- <UiInputCheckbox
- v-model="parameters.studentsAreAdherents"
- field="showAdherentList"
- label="students_are_also_association_members"
- />
- </v-col>
- </v-row>
- <v-row>
- <UiInputCombobox
- :label="$t('timezone')"
- :items="['Europe / Paris', 'Europe / Zurich', 'Indian / La Réunion']"
- />
- </v-row>
- </v-container>
- </template>
- <script setup lang="ts">
- import {PropType} from "@vue/runtime-core";
- import Parameters from "~/models/Organization/Parameters";
- const props = defineProps({
- parameters: {
- type: Object as PropType<Parameters>,
- required: true
- }
- })
- //
- // studentsAreAdherents
- // timezone
- </script>
- <style scoped lang="scss">
- </style>
|