Allow to group exports

This commit is contained in:
2019-06-18 21:01:32 +02:00
parent b7e71088ac
commit 9c6a3de0ff
5 changed files with 76 additions and 14 deletions

View File

@@ -107,10 +107,10 @@ class ExportController extends Controller
{
$exportManager = $this->exportManager;
$exports = $exportManager->getExports(true);
$exports = $exportManager->getExportsGrouped(true);
return $this->render('ChillMainBundle:Export:layout.html.twig', array(
'exports' => $exports
'grouped_exports' => $exports
));
}