/
var
/
www
/
html
/
boazapp
/
var
/
cache
/
prod
/
twig
/
ff
/
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; /* cargo/subcargo.html.twig */ class __TwigTemplate_ec73ac01e381799475a12cd408f64b0c0e6e0b539d0454ec0695cf3f5dc900f2 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", "cargo/subcargo.html.twig", 1); yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks)); } // line 5 public function block_content($context, array $blocks = []) { $macros = $this->macros; // line 6 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\">Cargo Add-on</h4> \t </div> \t <div class=\"content\"> <form action=\""; // line 15 yield $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("subCargo"); yield "\" method=\"post\"> \t\t\t\t\t\t\t\t\t<input type=\"hidden\" name=\"cargo\" class=\"form-control\" value=\""; // line 16 yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["cargoid"] ?? null), "html", null, true); yield "\" required> \t\t\t\t\t\t\t\t\t \t\t\t\t\t\t\t\t\t<div class=\"form-group\"> \t\t\t\t\t\t\t\t\t\t<label for=\"quantity\">Quantity</label> \t\t\t\t\t\t\t\t\t\t<input type=\"text\" name=\"quantity\" class=\"form-control\" placeholder=\"Quantity\" required> \t\t\t\t\t\t\t\t\t</div> \t\t\t\t\t\t\t\t\t<div class=\"form-group\"> \t\t\t\t\t\t\t\t\t\t<label for=\"date\">Date</label> \t\t\t\t\t\t\t\t\t\t<input type=\"text\" name=\"date\" id=\"datepicker\" class=\"form-control\" required> \t\t\t\t\t\t\t\t\t</div> \t\t\t\t\t\t\t\t\t\t<input type=\"submit\" name=\"submit\" value=\"Add\" class=\"btn btn-default\"> \t\t\t\t\t\t\t\t</form> </div> \t </div> \t </div> \t \t </div> \t </div> \t</div> "; return; yield ''; } /** * @codeCoverageIgnore */ public function getTemplateName() { return "cargo/subcargo.html.twig"; } /** * @codeCoverageIgnore */ public function isTraitable() { return false; } /** * @codeCoverageIgnore */ public function getDebugInfo() { return array ( 66 => 16, 62 => 15, 51 => 6, 47 => 5, 36 => 1,); } public function getSourceContext() { return new Source("", "cargo/subcargo.html.twig", "/var/www/html/boazapp/templates/cargo/subcargo.html.twig"); } }