|
|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <v-card v-if="organizationProfile.isSchool" class="parameters-page-card">
|
|
|
+ <LayoutParametersSection v-if="organizationProfile.isSchool">
|
|
|
<h4>{{ $t("alert_configuration") }}</h4>
|
|
|
<UiLoadingPanel v-if="pending" />
|
|
|
<UiForm
|
|
|
@@ -33,15 +33,15 @@
|
|
|
</v-col>
|
|
|
</v-row>
|
|
|
</UiForm>
|
|
|
- </v-card>
|
|
|
+ </LayoutParametersSection>
|
|
|
|
|
|
- <v-card class="parameters-page-card">
|
|
|
+ <LayoutParametersSection>
|
|
|
<LayoutParametersEntityTable
|
|
|
:model="AttendanceBookingReason"
|
|
|
:title="$t('attendanceBookingReasons')"
|
|
|
:columns-definitions="[{ property: 'reason' }]"
|
|
|
/>
|
|
|
- </v-card>
|
|
|
+ </LayoutParametersSection>
|
|
|
</template>
|
|
|
<script setup lang="ts">
|
|
|
import type { AsyncData } from '#app'
|