From b913a4615bdc1b0ea5721102a83d26fab0860d08 Mon Sep 17 00:00:00 2001 From: Michael Bauer <michael-bauer@posteo.de> Date: Tue, 14 May 2024 13:41:47 +0200 Subject: [PATCH] Add StatisticsForPersonPage-component --- .../statistics/StatisticsForPersonPage.vue | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 aleksis/apps/alsijil/frontend/components/coursebook/statistics/StatisticsForPersonPage.vue diff --git a/aleksis/apps/alsijil/frontend/components/coursebook/statistics/StatisticsForPersonPage.vue b/aleksis/apps/alsijil/frontend/components/coursebook/statistics/StatisticsForPersonPage.vue new file mode 100644 index 000000000..8625ae4ed --- /dev/null +++ b/aleksis/apps/alsijil/frontend/components/coursebook/statistics/StatisticsForPersonPage.vue @@ -0,0 +1,23 @@ +<template> + <!-- header (close, title, print) --> + <!-- school-term-select --> + <!-- documentations statistics list --> + <statistics-for-person-card + :compact="false" + :personId="TODO" + :schoolTermId="TODO" + /> +</template> + +<script> +import StatisticsForPersonCard from "./StatisticsForPersonCard.vue"; + +export default { + name: "StatisticsForPersonPage", + components: { + StatisticsForPersonCard, + }, + props: { + }, +}; +</script> -- GitLab