Symfony Exception

RouteNotFoundException RuntimeError

HTTP 500 Internal Server Error

An exception has been thrown during the rendering of a template ("Unable to generate a URL for the named route "odovzdavanie_cien_en" as such route does not exist.").

Exceptions 2

Twig\Error\ RuntimeError

  1.                                            <a style="width:100%;text-align:center;  " class="dropdown-item  text-dark px-xxl-3 px-xl-2 px-lg-1  dropdown-toggle historia_menu" drop='{{ vin }}' data-bs-toggle="dropdown" aria-expanded="false"><span style="">{{ vin }}</span></a>                                        
  2.                                            <a style="width:100%;" type="button" class="collapse-menu text-dark dropdown-toggle px-xxl-3 px-xl-2 px-lg-1 {{ app.request.attributes.get('vintage')==vin? 'fw-bold' }}" data-toggle="collapse" data-target=".mobil_ponuka">{{ vin }}</a>                                    
  3.                                            <ul  class=" dropdown-menu mobil_ponuka dropdown-menu-history collapse drop_{{vin}}"  style='margin-top:-5px; width:230px'>
  4.                                                 <li><a class="dropdown-item text-dark {{ app.request.attributes.get('vintage')==vin and app.request.get('_route') == 'history' ? 'fw-bold' }}" href={{ path('history',{vintage:vin})}}><span>{% trans %}Súťažiaci{% endtrans %}</span></a></li>    
  5.                                                 <li>
  6.                                                     <a class="dropdown-item text-dark {{ app.request.attributes.get('vintage')==vin and (app.request.get('_route') == 'odovzdavanie_cien_cs' or app.request.get('_route') == 'odovzdavanie_cien_sk' ) ? 'fw-bold' }}"  href={{ path('odovzdavanie_cien_'~app.request.locale,{akcia:'foto',vintage:vin})}}><span>{% trans %}Odovzdávanie cien - FINÁLE{% endtrans %}</span></a>                                    
  7.                                                 </li>  
  8.                                             </ul>                                      
  9.                                         </li>                               
  10.                                         {% endfor %}    
  11.                                     </ul>                           
  1.     <body>
  2.     <header class=\"sticky-top \" style=\"background-color: white;max-width:100%;filter: drop-shadow(2px 4px 6px #555555 );\"> 
  3.             ";
  4.         // line 70
  5.         $this->displayBlock('nav'$context$blocks);
  6.         // line 225
  7.         echo "      
  8.         </header>    
  9.     <content>
  10.         ";
in vendor/twig/twig/src/Template.php -> doDisplay (line 394)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 367)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.         $macros $this->macros;
  2.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  3.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""main/sutazne_diela/oneArt.html.twig"));
  4.         $this->parent $this->loadTemplate("base.html.twig""main/sutazne_diela/oneArt.html.twig"1);
  5.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  6.         
  7.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
  8.     }
in vendor/twig/twig/src/Template.php -> doDisplay (line 394)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 367)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
in vendor/twig/twig/src/Template.php -> display (line 379)
  1.             ob_start();
  2.         } else {
  3.             ob_start(function () { return ''; });
  4.         }
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Throwable $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.     public function render(array $context = []): string
  2.     {
  3.         // using func_get_args() allows to not expose the blocks argument
  4.         // as it should only be used by internal code
  5.         return $this->template->render($context\func_get_args()[1] ?? []);
  6.     }
  7.     public function display(array $context = [])
  8.     {
  9.         // using func_get_args() allows to not expose the blocks argument
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = []): string
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.     {
  2.         if (!$this->container->has('twig')) {
  3.             throw new \LogicException('You can not use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');
  4.         }
  5.         return $this->container->get('twig')->render($view$parameters);
  6.     }
  7.     /**
  8.      * Renders a view.
  9.      */
  1.     /**
  2.      * Renders a view.
  3.      */
  4.     protected function render(string $view, array $parameters = [], Response $response null): Response
  5.     {
  6.         $content $this->renderView($view$parameters);
  7.         if (null === $response) {
  8.             $response = new Response();
  9.         }
AbstractController->render('main/sutazne_diela/oneArt.html.twig', array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null)) in src/Controller/HistoryController.php (line 258)
  1.                 $kalendar "https://kubikum.com/sk/umelec-kalendar/" $kubUser->getId() . "#bottom_artist";
  2.             }
  3.         }
  4.         return $this->render('main/sutazne_diela/oneArt.html.twig', ['art' => $art'fotos' => $fotos'IDaukcia' => 0'vyhodnotenie' => 1'vitaz' => $vitaz'galeria' => $galeria'kalendar' => $kalendar'one' => 0'gar1' => $gar1'gar2' => $gar2]);
  5.     }
  6.   
  7.    /**
  8.      *@Route({"/vyhodnoceni"}, name="vyhodnotenie_cs", options={"expose"=true})  
in vendor/symfony/http-kernel/HttpKernel.php -> sutaziaciID (line 157)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     public function handle(Request $requestint $type HttpKernelInterface::MASTER_REQUESTbool $catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in public/index.php (line 20)
  1.     Debug::enable();
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Symfony\Component\Routing\Exception\ RouteNotFoundException

Unable to generate a URL for the named route "odovzdavanie_cien_en" as such route does not exist.

  1.                 }
  2.             } while (false !== $locale strstr($locale'_'true));
  3.         }
  4.         if (!isset($this->compiledRoutes[$name])) {
  5.             throw new RouteNotFoundException(sprintf('Unable to generate a URL for the named route "%s" as such route does not exist.'$name));
  6.         }
  7.         [$variables$defaults$requirements$tokens$hostTokens$requiredSchemes] = $this->compiledRoutes[$name];
  8.         if (isset($defaults['_canonical_route']) && isset($defaults['_locale'])) {
in vendor/symfony/routing/Router.php -> generate (line 235)
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function generate(string $name, array $parameters = [], int $referenceType self::ABSOLUTE_PATH)
  5.     {
  6.         return $this->getGenerator()->generate($name$parameters$referenceType);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.         ];
  2.     }
  3.     public function getPath(string $name, array $parameters = [], bool $relative false): string
  4.     {
  5.         return $this->generator->generate($name$parameters$relative UrlGeneratorInterface::RELATIVE_PATH UrlGeneratorInterface::ABSOLUTE_PATH);
  6.     }
  7.     public function getUrl(string $name, array $parameters = [], bool $schemeRelative false): string
  8.     {
  9.         return $this->generator->generate($name$parameters$schemeRelative UrlGeneratorInterface::NETWORK_PATH UrlGeneratorInterface::ABSOLUTE_URL);
  1.                                                 <li>
  2.                                                     <a class=\"dropdown-item text-dark ";
  3.             // line 123
  4.             echo ((((twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, (isset($context["app"]) || array_key_exists("app"$context) ? $context["app"] : (function () { throw new RuntimeError('Variable "app" does not exist.'123$this->source); })()), "request", [], "any"falsefalsefalse123), "attributes", [], "any"falsefalsefalse123), "get", [=> "vintage"], "method"falsefalsefalse123) == $context["vin"]) && ((twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, (isset($context["app"]) || array_key_exists("app"$context) ? $context["app"] : (function () { throw new RuntimeError('Variable "app" does not exist.'123$this->source); })()), "request", [], "any"falsefalsefalse123), "get", [=> "_route"], "method"falsefalsefalse123) == "odovzdavanie_cien_cs") || (twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, (isset($context["app"]) || array_key_exists("app"$context) ? $context["app"] : (function () { throw new RuntimeError('Variable "app" does not exist.'123$this->source); })()), "request", [], "any"falsefalsefalse123), "get", [=> "_route"], "method"falsefalsefalse123) == "odovzdavanie_cien_sk")))) ? ("fw-bold") : (""));
  5.             echo "\"  href=";
  6.             echo twig_escape_filter($this->env$this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath(("odovzdavanie_cien_" twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, (isset($context["app"]) || array_key_exists("app"$context) ? $context["app"] : (function () { throw new RuntimeError('Variable "app" does not exist.'123$this->source); })()), "request", [], "any"falsefalsefalse123), "locale", [], "any"falsefalsefalse123)), ["akcia" => "foto""vintage" => $context["vin"]]), "html"nulltrue);
  7.             echo "><span>";
  8.             echo $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("Odovzdávanie cien - FINÁLE", [], "messages");
  9.             echo "</span></a>                                    
  10.                                                 </li>  
  11.                                             </ul>                                      
in vendor/twig/twig/src/Template.php -> block_nav (line 171)
  1.             throw new \LogicException('A block must be a method on a \Twig\Template instance.');
  2.         }
  3.         if (null !== $template) {
  4.             try {
  5.                 $template->$block($context$blocks);
  6.             } catch (Error $e) {
  7.                 if (!$e->getSourceContext()) {
  8.                     $e->setSourceContext($template->getSourceContext());
  9.                 }
  1.     <body>
  2.     <header class=\"sticky-top \" style=\"background-color: white;max-width:100%;filter: drop-shadow(2px 4px 6px #555555 );\"> 
  3.             ";
  4.         // line 70
  5.         $this->displayBlock('nav'$context$blocks);
  6.         // line 225
  7.         echo "      
  8.         </header>    
  9.     <content>
  10.         ";
in vendor/twig/twig/src/Template.php -> doDisplay (line 394)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 367)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.         $macros $this->macros;
  2.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  3.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""main/sutazne_diela/oneArt.html.twig"));
  4.         $this->parent $this->loadTemplate("base.html.twig""main/sutazne_diela/oneArt.html.twig"1);
  5.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  6.         
  7.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
  8.     }
in vendor/twig/twig/src/Template.php -> doDisplay (line 394)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 367)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
in vendor/twig/twig/src/Template.php -> display (line 379)
  1.             ob_start();
  2.         } else {
  3.             ob_start(function () { return ''; });
  4.         }
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Throwable $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.     public function render(array $context = []): string
  2.     {
  3.         // using func_get_args() allows to not expose the blocks argument
  4.         // as it should only be used by internal code
  5.         return $this->template->render($context\func_get_args()[1] ?? []);
  6.     }
  7.     public function display(array $context = [])
  8.     {
  9.         // using func_get_args() allows to not expose the blocks argument
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = []): string
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.     {
  2.         if (!$this->container->has('twig')) {
  3.             throw new \LogicException('You can not use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');
  4.         }
  5.         return $this->container->get('twig')->render($view$parameters);
  6.     }
  7.     /**
  8.      * Renders a view.
  9.      */
  1.     /**
  2.      * Renders a view.
  3.      */
  4.     protected function render(string $view, array $parameters = [], Response $response null): Response
  5.     {
  6.         $content $this->renderView($view$parameters);
  7.         if (null === $response) {
  8.             $response = new Response();
  9.         }
AbstractController->render('main/sutazne_diela/oneArt.html.twig', array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null)) in src/Controller/HistoryController.php (line 258)
  1.                 $kalendar "https://kubikum.com/sk/umelec-kalendar/" $kubUser->getId() . "#bottom_artist";
  2.             }
  3.         }
  4.         return $this->render('main/sutazne_diela/oneArt.html.twig', ['art' => $art'fotos' => $fotos'IDaukcia' => 0'vyhodnotenie' => 1'vitaz' => $vitaz'galeria' => $galeria'kalendar' => $kalendar'one' => 0'gar1' => $gar1'gar2' => $gar2]);
  5.     }
  6.   
  7.    /**
  8.      *@Route({"/vyhodnoceni"}, name="vyhodnotenie_cs", options={"expose"=true})  
in vendor/symfony/http-kernel/HttpKernel.php -> sutaziaciID (line 157)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     public function handle(Request $requestint $type HttpKernelInterface::MASTER_REQUESTbool $catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in public/index.php (line 20)
  1.     Debug::enable();
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Stack Traces 2

[2/2] RuntimeError

Twig\Error\RuntimeError:
An exception has been thrown during the rendering of a template ("Unable to generate a URL for the named route "odovzdavanie_cien_en" as such route does not exist.").

  at templates/base.html.twig:123
  at Twig\Template->displayBlock('nav', array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null, 'app' => object(AppVariable), 'start' => object(StartController), 'route_name' => 'sutaziaciID_sk'), array('title' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_javascripts'), 'specifik_script' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_specifik_script'), 'nav' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_nav'), 'myCarousel' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_myCarousel'), 'alerts' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_alerts'), 'body_head' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_body_head'), 'body' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_body'), 'footer' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_footer')))
     (var/cache/real_20240226/twig/fd/fd7811ab6b5237781a8e85c2c45757a7380abe17386b429fb358dfbcabcfbb22.php:91)
  at __TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429->doDisplay(array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null, 'app' => object(AppVariable), 'start' => object(StartController), 'route_name' => 'sutaziaciID_sk'), array('title' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_javascripts'), 'specifik_script' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_specifik_script'), 'nav' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_nav'), 'myCarousel' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_myCarousel'), 'alerts' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_alerts'), 'body_head' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_body_head'), 'body' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_body'), 'footer' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_footer')))
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null, 'app' => object(AppVariable), 'start' => object(StartController)), array('title' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_javascripts'), 'specifik_script' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_specifik_script'), 'nav' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_nav'), 'myCarousel' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_myCarousel'), 'alerts' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_alerts'), 'body_head' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_body_head'), 'body' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_body'), 'footer' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_footer')))
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null, 'app' => object(AppVariable), 'start' => object(StartController)), array('stylesheets' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_stylesheets'), 'myCarousel' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_myCarousel'), 'title' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_title'), 'footer' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_footer'), 'body' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_body')))
     (var/cache/real_20240226/twig/34/3470178f6813ceb82e90fe7550f01051ee5804c15aeef330e395c713d551fefd.php:49)
  at __TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934->doDisplay(array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null, 'app' => object(AppVariable), 'start' => object(StartController)), array('stylesheets' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_stylesheets'), 'myCarousel' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_myCarousel'), 'title' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_title'), 'footer' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_footer'), 'body' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_body')))
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null, 'app' => object(AppVariable), 'start' => object(StartController)), array('stylesheets' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_stylesheets'), 'myCarousel' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_myCarousel'), 'title' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_title'), 'footer' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_footer'), 'body' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_body')))
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null))
     (vendor/twig/twig/src/Template.php:379)
  at Twig\Template->render(array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null), array())
     (vendor/twig/twig/src/TemplateWrapper.php:40)
  at Twig\TemplateWrapper->render(array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null))
     (vendor/twig/twig/src/Environment.php:277)
  at Twig\Environment->render('main/sutazne_diela/oneArt.html.twig', array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:249)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('main/sutazne_diela/oneArt.html.twig', array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:257)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('main/sutazne_diela/oneArt.html.twig', array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null))
     (src/Controller/HistoryController.php:258)
  at App\Controller\HistoryController->sutaziaciID(8)
     (vendor/symfony/http-kernel/HttpKernel.php:157)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:79)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:195)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:20)                

[1/2] RouteNotFoundException

Symfony\Component\Routing\Exception\RouteNotFoundException:
Unable to generate a URL for the named route "odovzdavanie_cien_en" as such route does not exist.

  at vendor/symfony/routing/Generator/CompiledUrlGenerator.php:50
  at Symfony\Component\Routing\Generator\CompiledUrlGenerator->generate('odovzdavanie_cien_en', array('akcia' => 'foto', 'vintage' => 2022), 1)
     (vendor/symfony/routing/Router.php:235)
  at Symfony\Component\Routing\Router->generate('odovzdavanie_cien_en', array('akcia' => 'foto', 'vintage' => 2022), 1)
     (vendor/symfony/twig-bridge/Extension/RoutingExtension.php:48)
  at Symfony\Bridge\Twig\Extension\RoutingExtension->getPath('odovzdavanie_cien_en', array('akcia' => 'foto', 'vintage' => 2022))
     (var/cache/real_20240226/twig/fd/fd7811ab6b5237781a8e85c2c45757a7380abe17386b429fb358dfbcabcfbb22.php:493)
  at __TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429->block_nav(array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null, 'app' => object(AppVariable), 'start' => object(StartController), 'route_name' => 'sutaziaciID_sk', 'startSutaziaci' => object(DateTime), 'startVyhodnotenie' => object(DateTime), 'startPorota' => object(DateTime), 'dnes' => object(DateTime), 'cz' => 'https://start21art.cz/', 'sk' => 'https://www.start21art.sk/', 'host' => 'www.start21art.eu', '_parent' => array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null, 'app' => object(AppVariable), 'start' => object(StartController), 'route_name' => 'sutaziaciID_sk', 'startSutaziaci' => object(DateTime), 'startVyhodnotenie' => object(DateTime), 'startPorota' => object(DateTime), 'dnes' => object(DateTime), 'cz' => 'https://start21art.cz/', 'sk' => 'https://www.start21art.sk/', 'host' => 'www.start21art.eu'), '_seq' => array(2022), 'vin' => 2022, '_key' => 0), array('title' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_javascripts'), 'specifik_script' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_specifik_script'), 'nav' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_nav'), 'myCarousel' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_myCarousel'), 'alerts' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_alerts'), 'body_head' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_body_head'), 'body' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_body'), 'footer' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_footer')))
     (vendor/twig/twig/src/Template.php:171)
  at Twig\Template->displayBlock('nav', array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null, 'app' => object(AppVariable), 'start' => object(StartController), 'route_name' => 'sutaziaciID_sk'), array('title' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_javascripts'), 'specifik_script' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_specifik_script'), 'nav' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_nav'), 'myCarousel' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_myCarousel'), 'alerts' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_alerts'), 'body_head' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_body_head'), 'body' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_body'), 'footer' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_footer')))
     (var/cache/real_20240226/twig/fd/fd7811ab6b5237781a8e85c2c45757a7380abe17386b429fb358dfbcabcfbb22.php:91)
  at __TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429->doDisplay(array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null, 'app' => object(AppVariable), 'start' => object(StartController), 'route_name' => 'sutaziaciID_sk'), array('title' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_javascripts'), 'specifik_script' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_specifik_script'), 'nav' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_nav'), 'myCarousel' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_myCarousel'), 'alerts' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_alerts'), 'body_head' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_body_head'), 'body' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_body'), 'footer' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_footer')))
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null, 'app' => object(AppVariable), 'start' => object(StartController)), array('title' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_title'), 'stylesheets' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_stylesheets'), 'javascripts' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_javascripts'), 'specifik_script' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_specifik_script'), 'nav' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_nav'), 'myCarousel' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_myCarousel'), 'alerts' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_alerts'), 'body_head' => array(object(__TwigTemplate_19b5cf52575437f0335283139450c7604faf470a870602bbbc9d9d26410fd429), 'block_body_head'), 'body' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_body'), 'footer' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_footer')))
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null, 'app' => object(AppVariable), 'start' => object(StartController)), array('stylesheets' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_stylesheets'), 'myCarousel' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_myCarousel'), 'title' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_title'), 'footer' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_footer'), 'body' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_body')))
     (var/cache/real_20240226/twig/34/3470178f6813ceb82e90fe7550f01051ee5804c15aeef330e395c713d551fefd.php:49)
  at __TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934->doDisplay(array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null, 'app' => object(AppVariable), 'start' => object(StartController)), array('stylesheets' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_stylesheets'), 'myCarousel' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_myCarousel'), 'title' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_title'), 'footer' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_footer'), 'body' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_body')))
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null, 'app' => object(AppVariable), 'start' => object(StartController)), array('stylesheets' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_stylesheets'), 'myCarousel' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_myCarousel'), 'title' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_title'), 'footer' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_footer'), 'body' => array(object(__TwigTemplate_ae711183dda3e9ec18677fe8cc8cc755b9c337f8498fa9540bf6022521912934), 'block_body')))
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null))
     (vendor/twig/twig/src/Template.php:379)
  at Twig\Template->render(array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null), array())
     (vendor/twig/twig/src/TemplateWrapper.php:40)
  at Twig\TemplateWrapper->render(array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null))
     (vendor/twig/twig/src/Environment.php:277)
  at Twig\Environment->render('main/sutazne_diela/oneArt.html.twig', array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:249)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('main/sutazne_diela/oneArt.html.twig', array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:257)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('main/sutazne_diela/oneArt.html.twig', array('art' => object(ArtsTop), 'fotos' => array(object(PhotosTop)), 'IDaukcia' => 0, 'vyhodnotenie' => 1, 'vitaz' => 0, 'galeria' => 'https://kubikum.com/sk/umelec/2472#bottom_artist', 'kalendar' => 'https://kubikum.com/sk/umelec-kalendar/2472#bottom_artist', 'one' => 0, 'gar1' => null, 'gar2' => null))
     (src/Controller/HistoryController.php:258)
  at App\Controller\HistoryController->sutaziaciID(8)
     (vendor/symfony/http-kernel/HttpKernel.php:157)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:79)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:195)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:20)