/
var
/
www
/
html
/
boaz2
/
var
/
cache
/
prod
/
twig
/
08
/
Upload File
HOME
<?php use Twig\Environment; use Twig\Error\LoaderError; use Twig\Error\RuntimeError; 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; /* loading/index.html.twig */ class __TwigTemplate_2d27d1d055c352ec58c54472e836aae3eafb1fa7a741ab4b00db6ed56ee04ea8 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 "base2.html.twig"; } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; $this->parent = $this->loadTemplate("base2.html.twig", "loading/index.html.twig", 1); $this->parent->display($context, array_merge($this->blocks, $blocks)); } // line 3 public function block_content($context, array $blocks = []) { $macros = $this->macros; // line 4 echo "\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\">"; // line 10 echo twig_escape_filter($this->env, ($context["type"] ?? null), "html", null, true); echo " Release Orders - "; echo twig_escape_filter($this->env, ($context["product"] ?? null), "html", null, true); echo "</h4> \t </div> \t <div class=\"content table-responsive table-full-width\"> \t<table class=\"table datatable table-hover\"> \t\t<thead> \t\t\t<tr> \t\t\t\t<th>ID</th> \t\t\t\t<th>Name</th> \t\t\t\t<th>Quantity</th> \t\t\t\t<th>Customer</th> \t\t\t\t<th>Date</th> \t\t\t</tr> \t\t</thead> \t\t<tbody> \t\t\t"; // line 24 $context['_parent'] = $context; $context['_seq'] = twig_ensure_traversable(($context["release"] ?? null)); foreach ($context['_seq'] as $context["_key"] => $context["item"]) { // line 25 echo "\t \t\t\t<tr> \t \t\t<td>"; // line 26 echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, $context["item"], "id", [], "any", false, false, false, 26), "html", null, true); echo "</td> \t \t\t<td><a href=\""; // line 27 echo twig_escape_filter($this->env, $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("addLoad", ["id" => twig_get_attribute($this->env, $this->source, $context["item"], "id", [], "any", false, false, false, 27)]), "html", null, true); echo "\"><h5>"; echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, $context["item"], "name", [], "any", false, false, false, 27), "html", null, true); echo "</h5></a></td> \t \t\t<td>"; // line 28 echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, $context["item"], "quantity", [], "any", false, false, false, 28), "html", null, true); echo "</td> \t \t\t<td>"; // line 29 echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, $context["item"], "customer", [], "any", false, false, false, 29), "html", null, true); echo "</td> \t \t\t<td>"; // line 30 echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, $context["item"], "date", [], "any", false, false, false, 30), "html", null, true); echo "</td> \t \t\t\t</tr> \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 33 echo " \t\t</tbody> \t</table> </div> \t </div> \t </div> \t \t </div> \t </div> \t</div> "; } public function getTemplateName() { return "loading/index.html.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 111 => 33, 102 => 30, 98 => 29, 94 => 28, 88 => 27, 84 => 26, 81 => 25, 77 => 24, 58 => 10, 50 => 4, 46 => 3, 35 => 1,); } public function getSourceContext() { return new Source("", "loading/index.html.twig", "/var/www/html/boaz2/templates/loading/index.html.twig"); } }