From be0851cdd1c04f646a3f69e144ac37beb2a3c627 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Mon, 20 Apr 2020 16:50:30 -0400 Subject: [PATCH] [+] Write better welcome message --- src/pages/course-selection/pages/welcome.vue | 24 ++++++++++++++------ 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/src/pages/course-selection/pages/welcome.vue b/src/pages/course-selection/pages/welcome.vue index 3d4b880..07ee8cb 100644 --- a/src/pages/course-selection/pages/welcome.vue +++ b/src/pages/course-selection/pages/welcome.vue @@ -3,15 +3,25 @@
Welcome
-
- This new page is designed to help you with your course selection for your - {{nextYearGradeLevel}} year, - providing more information such as how many people are currently enrolled in a course. -
You are a senior, what are you doing over here lol.
Unfortunately I can't help you with college course selection.
+ +
+ + This new page is designed to help you with your course selection for your {{nextGrade}} year, + providing more information such as how many people are currently enrolled in a course. + +

+ The courses displayed are from the current year, + but since they are unlikely to change, + they can provide a good view for the courses next year. + However, this also means that the new courses + and courses that didn't open this year are not going to be displayed here. + For 2020, the new courses are Financial Algebra and Acc Psychology. + Also, by default, only the courses that current {{nextGrade.toLowerCase()}}s take are displayed, + and you can enable "show all courses" in settings if you want to see all courses.
@@ -24,8 +34,8 @@ export default class Welcome extends Vue { @Prop({required: true}) app: App - - get nextYearGradeLevel() + + get nextGrade() { return GPAUtils.gradeLevelName(this.app.user.gradeLevel + 1) }