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 -N -r1.3 -r1.4 --- openacs-4/packages/recruiting/www/my-completed-interviews.tcl 2 Aug 2002 18:53:56 -0000 1.3 +++ openacs-4/packages/recruiting/www/my-completed-interviews.tcl 9 Aug 2002 20:30:51 -0000 1.4 @@ -10,19 +10,24 @@ set package_id [ad_conn package_id] set user_id [ad_verify_and_get_user_id] -table::setTitle interviews "Candidates you have interviewed" -table::setColumnHeadings interviews [list "Name" "Location" "Average Rating" "Hiring Recommendation"] -table::setColumnAlignment interviews [list left left center center] +ui::table::set_title interviews "Candidates you have interviewed" +ui::table::set_column_headings interviews [list "Name" "Location" "Average Rating" "Hiring Recommendation"] +ui::table::set_column_alignment interviews [list left left center center] db_foreach my_completed_interviews {} { - table::addSortableRow interviews [list "$last_name, $first_name" \ + ui::table::add_sortable_row 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."] + ui::table::add_sortable_row interviews [list "You haven't interviewed any candidates."] } set context_bar [list [list "index" "Recruiting"] "My Completed Interviews"] ad_return_template + + + + +