From 7f95a5ed54ffad458ddea9a02556a4ef15c9e91d Mon Sep 17 00:00:00 2001 From: Frank Date: Sun, 1 Feb 2026 18:15:38 +0100 Subject: [PATCH] added shared chars to list --- frontend/src/components/CharacterList.vue | 74 +++++++++++++++++------ frontend/src/locales/de | 4 +- frontend/src/locales/en | 4 +- 3 files changed, 61 insertions(+), 21 deletions(-) diff --git a/frontend/src/components/CharacterList.vue b/frontend/src/components/CharacterList.vue index 441dcec..9c7c83d 100644 --- a/frontend/src/components/CharacterList.vue +++ b/frontend/src/components/CharacterList.vue @@ -16,29 +16,50 @@ @delete-session="handleDeleteSession" /> -
+

{{ $t('characters.list.no_characters') }}

{{ $t('characters.list.no_characters_description') }}

-
-
- -

{{ character.name }}

-
- {{ character.rasse }} | - {{ character.typ }} | - {{ $t('characters.list.grade') }}: {{ character.grad }} | - {{ $t('characters.list.owner') }}: {{ character.owner }} | - - {{ character.public ? $t('characters.list.public') : $t('characters.list.private') }} - -
-
+
+
+ {{ $t('characters.list.owned_characters_title') }} +
+ +

{{ character.name }}

+
+ {{ character.rasse }} | + {{ character.typ }} | + {{ $t('characters.list.grade') }}: {{ character.grad }} | + {{ $t('characters.list.owner') }}: {{ character.owner }} | + + {{ character.public ? $t('characters.list.public') : $t('characters.list.private') }} + +
+
+
+
+
+ {{ $t('characters.list.shared_characters_title') }} +
+ +

{{ character.name }}

+
+ {{ character.rasse }} | + {{ character.typ }} | + {{ $t('characters.list.grade') }}: {{ character.grad }} | + {{ $t('characters.list.owner') }}: {{ character.owner }} | + + {{ character.public ? $t('characters.list.public') : $t('characters.list.private') }} + +
+
+
- -