From f8fa2023c80b057b00b090488102038a70d51d8e Mon Sep 17 00:00:00 2001 From: andrewlalis Date: Mon, 24 Feb 2025 20:05:05 -0500 Subject: [PATCH] Improved error handling on student page. --- app/src/apps/classroom_compliance/GuideView.vue | 9 +++++---- .../classroom_compliance/StudentEntriesList.vue | 15 ++++++++++++--- app/src/apps/classroom_compliance/StudentView.vue | 11 +++++++++-- 3 files changed, 26 insertions(+), 9 deletions(-) diff --git a/app/src/apps/classroom_compliance/GuideView.vue b/app/src/apps/classroom_compliance/GuideView.vue index b4e4166..f6ca70c 100644 --- a/app/src/apps/classroom_compliance/GuideView.vue +++ b/app/src/apps/classroom_compliance/GuideView.vue @@ -117,14 +117,15 @@ const sampleEntry: Ref = ref({

Scores

- Students' scores are calculated per week. The calculation is shown below: + Scores are calculated using a score expression. This is just a mathematical formula with a few variables + you can use. More information on what variables are available is show directly below the score expression editor.

- phone_score * 0.3 + behavior_score * 0.7 where + Also, you can choose the period of time over which to calculate scores. The following timeframes are currently + available:


diff --git a/app/src/apps/classroom_compliance/StudentEntriesList.vue b/app/src/apps/classroom_compliance/StudentEntriesList.vue index 9c7823a..f1834bb 100644 --- a/app/src/apps/classroom_compliance/StudentEntriesList.vue +++ b/app/src/apps/classroom_compliance/StudentEntriesList.vue @@ -1,8 +1,9 @@