WIP: Improve mobile layout

This commit is contained in:
Björn Fromme
2023-10-20 13:16:56 +02:00
parent fd23ea7503
commit 826b634346
8 changed files with 67 additions and 80 deletions
@@ -48,6 +48,7 @@ class IndexController extends AbstractController
);
return $this->render('teamer/index.html.twig', [
'teamer' => $teamer,
'pagination' => $pagination,
'errors' => $errors,
]);
+1 -1
View File
@@ -55,7 +55,7 @@ class AssignmentRepository extends ServiceEntityRepository
$qb = $this->createQueryBuilder('assignment');
$qb
->select('assignment', 'destination', 'job_profile')
->select('assignment', 'destination', 'job_profile', 'application')
->innerJoin('assignment.teamers', 'teamer', Join::WITH, 'teamer = :teamer')
->innerJoin('assignment.destination', 'destination')
->innerJoin('assignment.jobProfile', 'job_profile')