Index: openacs-4/packages/recruiting/www/my-new-interviews.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/recruiting/www/my-new-interviews.tcl,v diff -u -N -r1.2 -r1.3 --- openacs-4/packages/recruiting/www/my-new-interviews.tcl 2 Aug 2002 18:53:56 -0000 1.2 +++ openacs-4/packages/recruiting/www/my-new-interviews.tcl 9 Aug 2002 20:30:51 -0000 1.3 @@ -10,16 +10,20 @@ set package_id [ad_conn package_id] set user_id [ad_verify_and_get_user_id] -table::setTitle interviews "Candidates for you to interview" -table::setColumnHeadings interviews [list "Name" "Location"] +ui::table::set_title interviews "Candidates for you to interview" +ui::table::set_column_headings interviews [list "Name" "Location"] db_foreach my_new_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]" \ "(rate this candidate)"] } if_no_rows { - table::addSortableRow interviews [list "You don't have any candidates to interview right now."] + ui::table::add_sortable_row interviews [list "You don't have any candidates to interview right now."] } set context_bar [list [list "index" "Recruiting"] "My New Interviews"] ad_return_template + + + +