<?php
include "$_SERVER[DOCUMENT_ROOT]/root.class.php";
include "$_SERVER[DOCUMENT_ROOT]/app/team_dashboard/classes/team_dashboard.class.php";
$db = new db_safeguard();
$team = new TeamDashboard($db);


$team_id = $_GET['team_id'];

echo "<strong>Total Completed Jobcards:</strong> ";
echo $team->completedJobcards($team_id);
