Compare commits
2 Commits
c20ce31f04
...
c60907257e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c60907257e | ||
|
|
227c57ed41 |
@@ -169,3 +169,4 @@ today: Hüt
|
||||
week: Wuche
|
||||
month: Monat
|
||||
year: Jahr
|
||||
appName: Applikationsname
|
||||
|
||||
@@ -169,3 +169,4 @@ today: Heute
|
||||
week: Woche
|
||||
month: Monat
|
||||
year: Jahr
|
||||
appName: Applikationsname
|
||||
|
||||
@@ -169,3 +169,4 @@ today: Today
|
||||
week: Week
|
||||
month: Month
|
||||
year: Year
|
||||
appName: Applicationname
|
||||
|
||||
@@ -169,3 +169,4 @@ today: Hoy
|
||||
week: Semana
|
||||
month: Mes
|
||||
year: Año
|
||||
appName: Nombre de la aplicación
|
||||
|
||||
@@ -136,7 +136,7 @@ import ReportStat from 'src/components/ReportStat.vue';
|
||||
import type { Group, Groups } from 'src/vueLib/models/group';
|
||||
import { getLocalPageDefaults, setLocalPageDefaults } from 'src/localstorage/localStorage';
|
||||
import html2pdf from 'html2pdf.js';
|
||||
import type { PageDefault } from 'src/vueLib/models/pagedefaults';
|
||||
import type { PageDefault } from 'src/vueLib/models/pageDefaults';
|
||||
|
||||
const filter = ref<string>('');
|
||||
const group = ref<Group[]>([]);
|
||||
|
||||
@@ -7,25 +7,17 @@
|
||||
<p class="text-bold text-h6 text-primary q-pa-md">{{ $t('general') }}</p>
|
||||
<div class="row">
|
||||
<q-input
|
||||
dense
|
||||
:readonly="!user.isPermittedTo('settings', 'write')"
|
||||
:class="[
|
||||
colorGroup ? 'col-md-4' : 'col-md-3',
|
||||
colorGroup ? 'col-md-6' : 'col-md-6',
|
||||
colorGroup ? 'col-md-4' : 'col-md-12',
|
||||
'q-pa-md',
|
||||
]"
|
||||
:class="[colorGroup ? ' col-md-4' : 'col-md-12', 'q-pa-md']"
|
||||
filled
|
||||
:label="$t('appName')"
|
||||
v-model="settings.appName"
|
||||
></q-input>
|
||||
<q-input
|
||||
dense
|
||||
:readonly="!user.isPermittedTo('settings', 'write')"
|
||||
:class="[
|
||||
colorGroup ? 'col-md-4' : 'col-md-3',
|
||||
colorGroup ? 'col-md-6' : 'col-md-6',
|
||||
colorGroup ? 'col-md-4' : 'col-md-12',
|
||||
'q-pa-md',
|
||||
]"
|
||||
:class="[colorGroup ? 'col-md-4' : 'col-md-12', 'q-pa-md']"
|
||||
filled
|
||||
:label="$t('icon')"
|
||||
v-model="settings.icon"
|
||||
@@ -36,13 +28,9 @@
|
||||
<p class="text-bold text-h6 text-primary q-pa-md">{{ $t('database') }}</p>
|
||||
<div class="row">
|
||||
<q-input
|
||||
dense
|
||||
:readonly="!user.isPermittedTo('settings', 'write')"
|
||||
:class="[
|
||||
colorGroup ? 'col-md-4' : 'col-md-3',
|
||||
colorGroup ? 'col-md-6' : 'col-md-6',
|
||||
colorGroup ? 'col-md-4' : 'col-md-12',
|
||||
'q-pa-md',
|
||||
]"
|
||||
:class="[colorGroup ? 'col-md-4' : 'col-md-12', 'q-pa-md']"
|
||||
filled
|
||||
:label="$t('databaseName')"
|
||||
v-model="settings.databaseName"
|
||||
|
||||
@@ -66,7 +66,7 @@ import { ref } from 'vue';
|
||||
import { useAttendeesTable } from './AttendeesTable';
|
||||
import { useMemberTable } from '../members/MembersTable';
|
||||
import { getLocalPageDefaults } from 'src/localstorage/localStorage';
|
||||
import type { PageDefault } from 'src/vueLib/models/pagedefaults';
|
||||
import type { PageDefault } from 'src/vueLib/models/pageDefaults';
|
||||
|
||||
//use constants and function of imports
|
||||
const { attendees, updateAttendees } = useAttendeesTable();
|
||||
|
||||
@@ -215,7 +215,7 @@ import SearchableInput from '../components/SearchableInput.vue';
|
||||
import FilterSelect from '../components/FilterSelect.vue';
|
||||
import TopButtonGroup from '../components/TopButtonGroup.vue';
|
||||
import { getLocalPageDefaults, setLocalPageDefaults } from 'src/localstorage/localStorage';
|
||||
import type { PageDefault } from 'src/vueLib/models/pagedefaults';
|
||||
import type { PageDefault } from 'src/vueLib/models/pageDefaults';
|
||||
|
||||
const inProps = defineProps({
|
||||
addAttendees: { type: Boolean },
|
||||
|
||||
Reference in New Issue
Block a user