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