source = $this->getSourceContext(); $this->blocks = [ 'title' => [$this, 'block_title'], 'content' => [$this, 'block_content'], ]; } protected function doGetParent(array $context) { // line 1 return "layouts/simple.html.twig"; } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; $this->parent = $this->loadTemplate("layouts/simple.html.twig", "form/result.html.twig", 1); $this->parent->display($context, array_merge($this->blocks, $blocks)); } // line 3 public function block_title($context, array $blocks = []) { $macros = $this->macros; echo twig_escape_filter($this->env, ($context["title"] ?? null), "html", null, true); } // line 5 public function block_content($context, array $blocks = []) { $macros = $this->macros; // line 6 echo "

"; echo twig_escape_filter($this->env, ($context["title"] ?? null), "html", null, true); echo "

"; // line 8 echo twig_escape_filter($this->env, $this->env->getFunction('create_table')->getCallable()(), "html", null, true); echo " "; // line 9 echo twig_escape_filter($this->env, $this->env->getFunction('create_pagination')->getCallable()(), "html", null, true); echo " "; } /** * @codeCoverageIgnore */ public function getTemplateName() { return "form/result.html.twig"; } /** * @codeCoverageIgnore */ public function isTraitable() { return false; } /** * @codeCoverageIgnore */ public function getDebugInfo() { return array ( 68 => 9, 64 => 8, 58 => 6, 54 => 5, 47 => 3, 36 => 1,); } public function getSourceContext() { return new Source("", "form/result.html.twig", "/home/kali/php/untitled/views/form/result.html.twig"); } }