sf4, repair errors and make basic and admin chill pages works

This commit is contained in:
2020-07-30 17:34:45 +02:00
parent 7d9de642ff
commit 91edb14fb2
17 changed files with 126 additions and 77 deletions

View File

@@ -109,7 +109,7 @@ class ExportController extends Controller
$exports = $exportManager->getExportsGrouped(true);
return $this->render('ChillMainBundle:Export:layout.html.twig', array(
return $this->render('@ChillMain/Export/layout.html.twig', array(
'grouped_exports' => $exports
));
}
@@ -201,7 +201,7 @@ class ExportController extends Controller
}
}
return $this->render('ChillMainBundle:Export:new_centers_step.html.twig',
return $this->render('@ChillMain/Export/new_centers_step.html.twig',
array(
'form' => $form->createView(),
'export' => $export
@@ -262,7 +262,7 @@ class ExportController extends Controller
}
}
return $this->render('ChillMainBundle:Export:new.html.twig', array(
return $this->render('@ChillMain/Export/new.html.twig', array(
'form' => $form->createView(),
'export_alias' => $alias,
'export' => $export
@@ -403,7 +403,7 @@ class ExportController extends Controller
}
}
return $this->render('ChillMainBundle:Export:new_formatter_step.html.twig',
return $this->render('@ChillMain/Export/new_formatter_step.html.twig',
array(
'form' => $form->createView(),
'export' => $export
@@ -543,6 +543,6 @@ class ExportController extends Controller
$viewVariables['mime_type'] = 'text/csv';
}
return $this->render("ChillMainBundle:Export:download.html.twig", $viewVariables);
return $this->render("@ChillMain/Export/download.html.twig", $viewVariables);
}
}