/
var
/
www
/
html
/
boazapp
/
var
/
cache
/
prod
/
twig
/
be
/
Upload File
HOME
<?php use Twig\Environment; use Twig\Error\LoaderError; use Twig\Error\RuntimeError; use Twig\Extension\CoreExtension; use Twig\Extension\SandboxExtension; use Twig\Markup; use Twig\Sandbox\SecurityError; use Twig\Sandbox\SecurityNotAllowedTagError; use Twig\Sandbox\SecurityNotAllowedFilterError; use Twig\Sandbox\SecurityNotAllowedFunctionError; use Twig\Source; use Twig\Template; /* release/filtered.html.twig */ class __TwigTemplate_3d490bce9b5612b4abb6d59a3f223d69a0e64848117a7b1113bc28ccd179ae9c extends Template { private $source; private $macros = []; public function __construct(Environment $env) { parent::__construct($env); $this->source = $this->getSourceContext(); $this->blocks = [ 'content' => [$this, 'block_content'], ]; } protected function doGetParent(array $context) { // line 1 return "base1.html.twig"; } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; $this->parent = $this->loadTemplate("base1.html.twig", "release/filtered.html.twig", 1); yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks)); } // line 4 public function block_content($context, array $blocks = []) { $macros = $this->macros; // line 5 yield "\t<div class=\"content\"> \t <div class=\"container-fluid\"> \t <div class=\"row\"> \t <div class=\"col-md-12\"> \t <div class=\"card\"> \t <div class=\"header\"> \t <h4 class=\"title\">Release Orders from "; // line 11 yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(Twig\Extension\CoreExtension::sprintf(($context["from"] ?? null), "d-m-Y"), "html", null, true); yield " to "; yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(Twig\Extension\CoreExtension::sprintf(($context["to"] ?? null), "d-m-Y"), "html", null, true); yield "</h4> \t </div> \t <div class=\"content table-responsive table-full-width\"> <table class=\"table table-hover\"> <thead> \t\t\t\t\t\t\t\t\t\t<tr> \t\t\t\t\t\t\t\t\t\t\t<th>Release Order Name</th> \t\t\t\t\t\t\t\t\t\t\t<th>Actions</th> \t\t\t\t\t\t\t\t\t\t</tr> \t\t\t\t\t\t\t\t\t</thead> <tbody> \t\t\t\t\t\t\t\t\t\t"; // line 22 $context['_parent'] = $context; $context['_seq'] = CoreExtension::ensureTraversable(($context["release"] ?? null)); foreach ($context['_seq'] as $context["_key"] => $context["item"]) { // line 23 yield "\t\t\t\t\t\t\t\t\t\t\t\t<tr> \t\t\t\t\t\t\t\t\t\t\t\t\t<td>"; // line 24 yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, $context["item"], "name", [], "any", false, false, false, 24), "html", null, true); yield "</td> \t\t\t\t\t\t\t\t\t\t\t\t\t<td><a href=\""; // line 25 yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("viewRelease", ["id" => CoreExtension::getAttribute($this->env, $this->source, $context["item"], "id", [], "any", false, false, false, 25)]), "html", null, true); yield "\">View Release Order</a></td> \t\t\t\t\t\t\t\t\t\t\t\t</tr> \t\t\t\t\t\t\t\t\t\t"; } $_parent = $context['_parent']; unset($context['_seq'], $context['_iterated'], $context['_key'], $context['item'], $context['_parent'], $context['loop']); $context = array_intersect_key($context, $_parent) + $_parent; // line 28 yield "\t\t\t\t\t\t\t\t\t</tbody> </table> </div> \t </div> \t </div> \t </div> \t </div> \t</div> "; return; yield ''; } /** * @codeCoverageIgnore */ public function getTemplateName() { return "release/filtered.html.twig"; } /** * @codeCoverageIgnore */ public function isTraitable() { return false; } /** * @codeCoverageIgnore */ public function getDebugInfo() { return array ( 95 => 28, 86 => 25, 82 => 24, 79 => 23, 75 => 22, 59 => 11, 51 => 5, 47 => 4, 36 => 1,); } public function getSourceContext() { return new Source("", "release/filtered.html.twig", "/var/www/html/boazapp/templates/release/filtered.html.twig"); } }