From e474aa41041c411fb84bc6914149397a249a51c4 Mon Sep 17 00:00:00 2001 From: zhytkovd Date: Tue, 16 Jun 2026 13:32:45 -0400 Subject: [PATCH 1/2] Fixed rendering error in the 'On Transcript' column for StudentStaff --- app/templates/main/userProfile.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/main/userProfile.html b/app/templates/main/userProfile.html index 6989def8d..a2e6f67e6 100644 --- a/app/templates/main/userProfile.html +++ b/app/templates/main/userProfile.html @@ -244,7 +244,7 @@

{% endif %} - {% if g.current_user.isCeltsAdmin %} + {% if g.current_user.isCeltsAdmin or g.current_user.isCeltsStudentStaff %} From 733ce6cff4deed5b3ca52dce9ca4d413e9f77d10 Mon Sep 17 00:00:00 2001 From: zhytkovd Date: Tue, 16 Jun 2026 16:02:13 -0400 Subject: [PATCH 2/2] Removed 'On Transcript' column from the table --- app/templates/main/userProfile.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/templates/main/userProfile.html b/app/templates/main/userProfile.html index a2e6f67e6..75fa86a11 100644 --- a/app/templates/main/userProfile.html +++ b/app/templates/main/userProfile.html @@ -208,7 +208,9 @@

Training {% if g.current_user.isCeltsAdmin or g.current_user.isCeltsStudentStaff%} Eligibility - On Transcript + {% if g.current_user.isCeltsAdmin%} + On Transcript + {% endif %} {% endif %} @@ -244,7 +246,7 @@

{% endif %} - {% if g.current_user.isCeltsAdmin or g.current_user.isCeltsStudentStaff %} + {% if g.current_user.isCeltsAdmin %}