WIP: Implement application process

This commit is contained in:
Björn Fromme
2023-10-10 17:17:30 +02:00
parent 3a458df94f
commit 6910ab6134
34 changed files with 937 additions and 119 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ class FaqController extends AbstractController
{
$faqs = $this->faqRepository->findBy([], ['sorting' => 'ASC']);
return $this->render('teamer/faq.html.twig', [
return $this->render('teamer/faq/index.html.twig', [
'faqs' => $faqs,
]);
}