diff options
author | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2020-02-12 15:36:02 -0500 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2020-02-12 15:36:02 -0500 |
commit | a3c223ba7921e5c8da338573e81b055fb8aa7cda (patch) | |
tree | b6e564cf7228696144653b57960315fcc158ba25 /GradeBook_lib.tcl | |
parent | f704eda583a930195bb0e5725aebd329d32a67fe (diff) | |
download | GradeBook-a3c223ba7921e5c8da338573e81b055fb8aa7cda.tar.gz GradeBook-a3c223ba7921e5c8da338573e81b055fb8aa7cda.zip |
added new column categories Note, Info, AdmissionScore
Diffstat (limited to 'GradeBook_lib.tcl')
-rwxr-xr-x | GradeBook_lib.tcl | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/GradeBook_lib.tcl b/GradeBook_lib.tcl index bcfb235..270c7a1 100755 --- a/GradeBook_lib.tcl +++ b/GradeBook_lib.tcl @@ -204,6 +204,9 @@ proc default_grades_category {} { Presentation\ MidTerm\ FinalExam\ + Note\ + Info\ + AdmissionScore\ ] return $grades_category } @@ -546,7 +549,10 @@ proc grade_Category2html_name { category } { Participation {set html_name Participation} MidTerm {set html_name MidTerm} FinalExam {set html_name FinalExam} - default {set html_name unknown} + Note {set html_name Note} + AdmissionScore {set html_name AdmissionScore} + Info {set html_name Info} + default {set html_name $category} } return $html_name } |