name"); echo "
id."\"> "; start_table(); echo " Remove? Name Total credit Recent average credit "; $users = BoincUser::enum("teamid=$team->id"); $ninactive_users = 0; foreach($users as $user) { if ($user->id == $logged_in_user->id) continue; if ($user->id == $team->userid) continue; $user_total_credit = format_credit($user->total_credit); $user_expavg_credit = format_credit($user->expavg_credit); echo " id> $user->name $user_total_credit $user_expavg_credit "; $ninactive_users++; } end_table(); if ($ninactive_users == 0) { echo "

No members are eligible for removal."; } else { echo ""; echo ""; } echo "

"; page_tail(); ?>