diff --git a/Controller/ImportController.php b/Controller/ImportController.php index 04b154f..e358faa 100644 --- a/Controller/ImportController.php +++ b/Controller/ImportController.php @@ -35,7 +35,7 @@ public function uploadAction($alias) $form = $this->container->get('form.factory')->create(ImportFormType::class, null, array('field_choices' => $fieldChoices)); - return $this->container->get('templating')->renderResponse('@AvroCsvBundle/Import/upload.html.twig', array( + return $this->container->get('templating')->renderResponse('@AvroCsv/Import/upload.html.twig', array( 'form' => $form->createView(), 'alias' => $alias, )); @@ -79,7 +79,7 @@ public function mappingAction(Request $request, $alias) $rows = $reader->getRows($this->container->getParameter('avro_csv.sample_count')); - return $this->container->get('templating')->renderResponse('@AvroCsvBundle/Import/mapping.html.twig', array( + return $this->container->get('templating')->renderResponse('@AvroCsv/Import/mapping.html.twig', array( 'form' => $form->createView(), 'alias' => $alias, 'headers' => array_combine((array) $headers, (array) $fileHeaders),