use index for overview as it is the index page of job

This commit is contained in:
Jeroen De Meerleer 2021-04-08 13:39:18 +02:00
parent af9bb9691a
commit bb278e5d17
Signed by: JeroenED
GPG Key ID: 28CCCB8F62BFADD6
2 changed files with 1 additions and 1 deletions

View File

@ -16,6 +16,6 @@ class DefaultController extends Controller
}
$jobRepo = new Job($this->getDbCon());
$jobs = $jobRepo->getAllJobs();
return $this->render('job/overview.html.twig', ['jobs' => $jobs]);
return $this->render('job/index.html.twig', ['jobs' => $jobs]);
}
}