-
- {{ formatCurrencyChfCentimes(totalCostInCurrentYear) }}
-
-
CHF
+
+
+
+ {{ $t("Kosten in") }} {{ new Date().getFullYear() }}
+
+
+
+
+ {{ formatCurrencyChfCentimes(totalCostInCurrentYear) }}
+
+ CHF
+
-
-
-
-
- {{ $t("Teilnehmer im 2024") }}
-
-
-
-
{{ attendanceCountInCurrentYear }}
+
+
+
+ {{ $t("Teilnehmer im 2024") }}
+
+
+
+ {{ attendanceCountInCurrentYear }}
+
+
+ {{ $t("Teilnehmer") }}
+
-
- {{ $t("Teilnehmer") }}
-
-
-
-
+
+
+
+
+
+ {{ $t("Teilnehmer nach Zulassungsprofilen") }}
+
+
+
diff --git a/client/src/services/dashboard.ts b/client/src/services/dashboard.ts
index 5045e37e..dccff8ed 100644
--- a/client/src/services/dashboard.ts
+++ b/client/src/services/dashboard.ts
@@ -14,7 +14,6 @@ import type {
CourseStatisticsType,
DashboardConfigType,
TrainingResponsibleStatisticsQuery,
- TrainingResponsibleStatisticsType,
} from "@/gql/graphql";
import type {
DashboardPersonsPageMode,
diff --git a/server/vbv_lernwelt/dashboard/graphql/queries.py b/server/vbv_lernwelt/dashboard/graphql/queries.py
index 6bce8418..4eaf5589 100644
--- a/server/vbv_lernwelt/dashboard/graphql/queries.py
+++ b/server/vbv_lernwelt/dashboard/graphql/queries.py
@@ -1,4 +1,3 @@
-from hashlib import md5
from typing import Dict, List, Set, Tuple
import graphene
diff --git a/server/vbv_lernwelt/dashboard/graphql/types/dashboard.py b/server/vbv_lernwelt/dashboard/graphql/types/dashboard.py
index 4f9196a6..bdca5301 100644
--- a/server/vbv_lernwelt/dashboard/graphql/types/dashboard.py
+++ b/server/vbv_lernwelt/dashboard/graphql/types/dashboard.py
@@ -1,9 +1,8 @@
-from datetime import datetime
from itertools import groupby
+
import graphene
from graphene import Enum
-from vbv_lernwelt.core.admin import User
from vbv_lernwelt.course.graphql.types import (
CourseConfigurationObjectType,
CourseSessionUserType,
@@ -31,7 +30,6 @@ from vbv_lernwelt.learnpath.models import Circle
from vbv_lernwelt.shop.models import CheckoutInformation, CheckoutState
from vbv_lernwelt.shop.views import (
COURSE_SESSION_ID_TO_PRODUCT_SKU,
- PRODUCT_SKU_TO_COURSE_SESSION_ID,
)