diff --git a/layouts/partials/sections/education-alt.html b/layouts/partials/sections/education-alt.html
index c83478b..5ba1059 100644
--- a/layouts/partials/sections/education-alt.html
+++ b/layouts/partials/sections/education-alt.html
@@ -52,18 +52,18 @@
{{ i18n "taken_courses" }}
{{ if .takenCourses.showGrades }}
- {{ $dontScale := .takenCourses.dontScale}}
+ {{ $hideScale := .takenCourses.hideScale }}
{{ i18n "course_name" }} |
- {{ if not $dontScale }}{{ i18n "total_credit" }} | {{ end }}
+ {{ if not $hideScale }}{{ i18n "total_credit" }} | {{ end }}
{{ i18n "obtained_credit" }} |
{{ range $index,$course := .takenCourses.courses }}
{{ $course.name }} |
- {{ if not $dontScale }}{{ $course.outOf }} | {{ end }}
+ {{ if not $hideScale }}{{ $course.outOf }} | {{ end }}
{{ $course.achieved }} |
{{ end }}
diff --git a/layouts/partials/sections/education.html b/layouts/partials/sections/education.html
index c214deb..21c195c 100644
--- a/layouts/partials/sections/education.html
+++ b/layouts/partials/sections/education.html
@@ -52,18 +52,18 @@
{{ i18n "taken_courses"}}
{{ if .takenCourses.showGrades }}
- {{ $dontScale := .takenCourses.dontScale}}
+ {{ $hideScale := .takenCourses.hideScale }}
{{ i18n "course_name"}} |
- {{ if not $dontScale }}{{ i18n "total_credit"}} | {{ end }}
+ {{ if not $hideScale }}{{ i18n "total_credit"}} | {{ end }}
{{ i18n "obtained_credit"}} |
{{ range $index,$course := .takenCourses.courses }}
{{ $course.name }} |
- {{ if not $dontScale }}{{ $course.outOf }} | {{ end }}
+ {{ if not $hideScale }}{{ $course.outOf }} | {{ end }}
{{ $course.achieved }} |
{{ end }}