Add grade filter by category
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
nemunaire 2023-03-08 17:13:55 +01:00
commit 19a759536b
4 changed files with 29 additions and 2 deletions

View file

@ -0,0 +1,6 @@
export async function load({ params }) {
return {
promo: parseInt(params.promo),
cid: parseInt(params.cid),
};
}

View file

@ -0,0 +1,7 @@
<script>
import StudentGrades from '$lib/components/StudentGrades.svelte';
export let data;
</script>
<StudentGrades promo={data.promo} category={data.cid} />