diff options
author | Eugeniy Mikhailov <evgmik@gmail.com> | 2011-05-09 17:19:36 -0400 |
---|---|---|
committer | Eugeniy Mikhailov <evgmik@gmail.com> | 2011-05-09 17:19:36 -0400 |
commit | 33cc6c2d086ee1210c31fc3fd302f00702207054 (patch) | |
tree | 09442b8d2833210ebee15b60b6410553de13042a /GradeBook_lib.tcl | |
parent | cca5e341e44abe694ac50179479f6f96569d886c (diff) | |
download | GradeBook-33cc6c2d086ee1210c31fc3fd302f00702207054.tar.gz GradeBook-33cc6c2d086ee1210c31fc3fd302f00702207054.zip |
added participation to categories names
Ignore-this: 71a62eed2fe64540d22810dd8b5dc737
darcs-hash:20110509211936-067c0-7ca83da3d0e82187d5360511391d91c4bbd512c7.gz
Diffstat (limited to 'GradeBook_lib.tcl')
-rwxr-xr-x | GradeBook_lib.tcl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/GradeBook_lib.tcl b/GradeBook_lib.tcl index 6ab1c38..8a6e14a 100755 --- a/GradeBook_lib.tcl +++ b/GradeBook_lib.tcl @@ -291,6 +291,7 @@ proc grade_Category2html_name { category } { Quiz {set html_name Quiz} HomeWork {set html_name HomeWork} LabReport {set html_name LabReport} + Participation {set html_name Participation} MidTerm {set html_name MidTerm} FinalExam {set html_name FinalExam} default {set html_name unknown} @@ -888,7 +889,7 @@ proc htmlDBout {db permission_list user {sort_col {}}} { set col_value [format "%04.1f%%" [expr {100.* $col_value} ] ] # add letter grade to Grand Total if { $index eq "Grand Total" } { - set col_value [ concat $col_value "=" $col_value_letter_grade ] + set col_value [ concat $col_value "=" <b> $col_value_letter_grade </b>] } } set col_value [htmlReplaceEmptyString $col_value] |