Index: openacs-4/packages/recruiting/www/my-completed-interviews.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/recruiting/www/my-completed-interviews.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/recruiting/www/my-completed-interviews.tcl 1 Aug 2002 22:14:37 -0000 1.2 +++ openacs-4/packages/recruiting/www/my-completed-interviews.tcl 2 Aug 2002 18:53:56 -0000 1.3 @@ -14,7 +14,11 @@ table::setColumnHeadings interviews [list "Name" "Location" "Average Rating" "Hiring Recommendation"] table::setColumnAlignment interviews [list left left center center] db_foreach my_completed_interviews {} { - table::addSortableRow interviews [list "$last_name, $first_name" "$location" "$average_rating" "$should_hire_p" "(view my ratings) (modify interview)"] + table::addSortableRow interviews [list "$last_name, $first_name" \ + "$location
Home: [recruiting_candidate::format_phone -phone_number $home_phone]
Mobile: [recruiting_candidate::format_phone -phone_number $cell_phone]" \ + "$average_rating" \ + "$should_hire_p" \ + "(view my ratings) (modify interview)"] } if_no_rows { table::addSortableRow interviews [list "You haven't interviewed any candidates."] }