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 0000000000000000000000000000000000000000..8625ae4edba728edc887e539eba25b72cffc6eb5 --- /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>