<?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;
use Twig\TemplateWrapper;

/* processing/validate_form.html.twig */
class __TwigTemplate_4e855a11291480e14355c2e3ac8e8f07 extends Template
{
    private Source $source;
    /**
     * @var array<string, Template>
     */
    private array $macros = [];

    public function __construct(Environment $env)
    {
        parent::__construct($env);

        $this->source = $this->getSourceContext();

        $this->blocks = [
            'page_title' => [$this, 'block_page_title'],
            'page_content' => [$this, 'block_page_content'],
            'javascripts' => [$this, 'block_javascripts'],
        ];
    }

    protected function doGetParent(array $context): bool|string|Template|TemplateWrapper
    {
        // line 1
        return "@AdminLTE/layout/mesodd-layout.html.twig";
    }

    protected function doDisplay(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        $this->parent = $this->load("@AdminLTE/layout/mesodd-layout.html.twig", 1);
        yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));
    }

    // line 3
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_page_title(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 4
        yield "    ";
        if (($this->extensions['Symfony\Bridge\Twig\Extension\SecurityExtension']->isGranted("ROLE_FOCAL") && CoreExtension::getAttribute($this->env, $this->source, CoreExtension::getAttribute($this->env, $this->source, ($context["app"] ?? null), "user", [], "any", false, false, false, 4), "commune", [], "any", false, false, false, 4))) {
            // line 5
            yield "        Soumission du PTA
    ";
        } else {
            // line 7
            yield "        ";
            yield $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("validate.title", [], "messages");
            // line 8
            yield "    ";
        }
        yield from [];
    }

    // line 11
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_page_content(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 12
        yield "    ";
        yield         $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->renderBlock(($context["form"] ?? null), 'form_start');
        yield "
        ";
        // line 13
        yield from $this->load("processing/validate_form.html.twig", 13, 1488319769)->unwrap()->yield($context);
        // line 25
        yield "        
    ";
        // line 26
        yield         $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->renderBlock(($context["form"] ?? null), 'form_end');
        yield "

    ";
        // line 28
        if ((($tmp = ($context["action"] ?? null)) && $tmp instanceof Markup ? (string) $tmp : $tmp)) {
            // line 29
            yield "        ";
            yield from $this->load("processing/validate_form.html.twig", 29, 658110082)->unwrap()->yield($context);
            // line 150
            yield "    ";
        } else {
            // line 151
            yield "        <div class=\"alert alert-info\" role=\"alert\">
            ";
            // line 152
            yield $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("Veuillez sélectionner une action  pour afficher ces activités", [], "messages");
            // line 153
            yield "        </div>
        ";
        }
        // line 155
        yield "              

";
        yield from [];
    }

    // line 159
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_javascripts(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 160
        yield "    <script>
        \$(document).on('change', '#validate_type, #validate_entite, #validate_programm', function () {
            let \$type = \$('#validate_type')
            let \$entite = \$('#validate_entite')
            let \$form = \$(this).closest('form')
    
            let data = {}
            data[\$type.attr('name')] = \$type.val()
            data[\$entite.attr('name')] = \$entite.val()
            data[\$(this).attr('name')] = \$(this).val()
            
            let \$field = \$(this).attr('id')
            \$.ajax({
                url: \$form.attr('action'),
                type: \$form.attr('method'),
                data: data,
                success: function(html) {
                    if (\$field == 'validate_type') {
                        \$('#validate_entite').replaceWith(
                            \$(html).find('#validate_entite')
                        )
                        \$('#validate_programm').replaceWith(
                            \$(html).find('#validate_programm')
                        )
                        \$('#validate_action').replaceWith(
                            \$(html).find('#validate_action')
                        )
                    }
                    if (\$field == 'validate_entite') {
                        \$('#validate_programm').replaceWith(
                            \$(html).find('#validate_programm')
                        )
                        \$('#validate_action').replaceWith(
                            \$(html).find('#validate_action')
                        )
                    }
                    if (\$field == 'validate_programm') {
                        \$('#validate_action').replaceWith(
                            \$(html).find('#validate_action')
                        )
                    }
                }
            });
        });

    </script>
";
        yield from [];
    }

    /**
     * @codeCoverageIgnore
     */
    public function getTemplateName(): string
    {
        return "processing/validate_form.html.twig";
    }

    /**
     * @codeCoverageIgnore
     */
    public function isTraitable(): bool
    {
        return false;
    }

    /**
     * @codeCoverageIgnore
     */
    public function getDebugInfo(): array
    {
        return array (  129 => 160,  122 => 159,  115 => 155,  111 => 153,  109 => 152,  106 => 151,  103 => 150,  100 => 29,  98 => 28,  93 => 26,  90 => 25,  88 => 13,  83 => 12,  76 => 11,  70 => 8,  67 => 7,  63 => 5,  60 => 4,  53 => 3,  42 => 1,);
    }

    public function getSourceContext(): Source
    {
        return new Source("", "processing/validate_form.html.twig", "/var/www/html/templates/processing/validate_form.html.twig");
    }
}


/* processing/validate_form.html.twig */
class __TwigTemplate_4e855a11291480e14355c2e3ac8e8f07___1488319769 extends Template
{
    private Source $source;
    /**
     * @var array<string, Template>
     */
    private array $macros = [];

    public function __construct(Environment $env)
    {
        parent::__construct($env);

        $this->source = $this->getSourceContext();

        $this->blocks = [
            'box_body' => [$this, 'block_box_body'],
        ];
    }

    protected function doGetParent(array $context): bool|string|Template|TemplateWrapper
    {
        // line 13
        return "@AdminLTE/Widgets/box-widget.html.twig";
    }

    protected function doDisplay(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        $this->parent = $this->load("@AdminLTE/Widgets/box-widget.html.twig", 13);
        yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));
    }

    // line 14
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_box_body(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 15
        yield "                ";
        if (($this->extensions['Symfony\Bridge\Twig\Extension\SecurityExtension']->isGranted("ROLE_MANAGER") || $this->extensions['Symfony\Bridge\Twig\Extension\SecurityExtension']->isGranted("ROLE_DDD"))) {
            // line 16
            yield "                    ";
            if ((($tmp = $this->extensions['Symfony\Bridge\Twig\Extension\SecurityExtension']->isGranted("ROLE_MANAGER")) && $tmp instanceof Markup ? (string) $tmp : $tmp)) {
                // line 17
                yield "                        ";
                yield $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->searchAndRenderBlock(CoreExtension::getAttribute($this->env, $this->source, ($context["form"] ?? null), "type", [], "any", false, false, false, 17), 'row');
                yield "
                    ";
            }
            // line 19
            yield "                    ";
            yield $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->searchAndRenderBlock(CoreExtension::getAttribute($this->env, $this->source, ($context["form"] ?? null), "entite", [], "any", false, false, false, 19), 'row');
            yield "
                ";
        }
        // line 21
        yield "                ";
        yield $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->searchAndRenderBlock(CoreExtension::getAttribute($this->env, $this->source, ($context["form"] ?? null), "programm", [], "any", false, false, false, 21), 'row');
        yield "
                ";
        // line 22
        yield $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->searchAndRenderBlock(CoreExtension::getAttribute($this->env, $this->source, ($context["form"] ?? null), "action", [], "any", false, false, false, 22), 'row');
        yield "
            ";
        yield from [];
    }

    /**
     * @codeCoverageIgnore
     */
    public function getTemplateName(): string
    {
        return "processing/validate_form.html.twig";
    }

    /**
     * @codeCoverageIgnore
     */
    public function isTraitable(): bool
    {
        return false;
    }

    /**
     * @codeCoverageIgnore
     */
    public function getDebugInfo(): array
    {
        return array (  274 => 22,  269 => 21,  263 => 19,  257 => 17,  254 => 16,  251 => 15,  244 => 14,  233 => 13,  129 => 160,  122 => 159,  115 => 155,  111 => 153,  109 => 152,  106 => 151,  103 => 150,  100 => 29,  98 => 28,  93 => 26,  90 => 25,  88 => 13,  83 => 12,  76 => 11,  70 => 8,  67 => 7,  63 => 5,  60 => 4,  53 => 3,  42 => 1,);
    }

    public function getSourceContext(): Source
    {
        return new Source("", "processing/validate_form.html.twig", "/var/www/html/templates/processing/validate_form.html.twig");
    }
}


/* processing/validate_form.html.twig */
class __TwigTemplate_4e855a11291480e14355c2e3ac8e8f07___658110082 extends Template
{
    private Source $source;
    /**
     * @var array<string, Template>
     */
    private array $macros = [];

    public function __construct(Environment $env)
    {
        parent::__construct($env);

        $this->source = $this->getSourceContext();

        $this->blocks = [
            'box_body' => [$this, 'block_box_body'],
            'box_footer' => [$this, 'block_box_footer'],
        ];
    }

    protected function doGetParent(array $context): bool|string|Template|TemplateWrapper
    {
        // line 29
        return "@AdminLTE/Widgets/box-widget.html.twig";
    }

    protected function doDisplay(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        $this->parent = $this->load("@AdminLTE/Widgets/box-widget.html.twig", 29);
        yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));
    }

    // line 30
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_box_body(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 31
        yield "            <table class=\"table table-striped\">
                <thead>
                    <th>";
        // line 33
        yield $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("basics.code", [], "messages");
        yield "</th>
                    <th>";
        // line 34
        yield $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("basics.name", [], "messages");
        yield "</th>
                    <th>";
        // line 35
        yield $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("basics.direction", [], "messages");
        yield "</th>
                    <th>";
        // line 36
        yield $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("basics.amount", [], "messages");
        yield "</th>
                    <th style=\"width: 100px\"></th>
                </thead>
                <tbody>
                    ";
        // line 40
        $context['_parent'] = $context;
        $context['_seq'] = CoreExtension::ensureTraversable(($context["activities"] ?? null));
        foreach ($context['_seq'] as $context["_key"] => $context["activity"]) {
            // line 41
            yield "                    <tr>
                        <td>";
            // line 42
            yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, $context["activity"], "code", [], "any", false, false, false, 42), "html", null, true);
            yield "</td>
                        <td>";
            // line 43
            yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, $context["activity"], "name", [], "any", false, false, false, 43), "html", null, true);
            yield "</td>
                        <td>";
            // line 44
            yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, CoreExtension::getAttribute($this->env, $this->source, $context["activity"], "direction", [], "any", false, false, false, 44), "name", [], "any", false, false, false, 44), "html", null, true);
            yield "</td>
                        <td align=\"right\">";
            // line 45
            yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, $context["activity"], "amount", [], "any", false, false, false, 45), "html", null, true);
            yield "</td>
                        <td class=\"text-center\">
                            <div class=\"btn-group\">
                                <a href=\"";
            // line 48
            yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("app_update_activity", ["id" => CoreExtension::getAttribute($this->env, $this->source, $context["activity"], "id", [], "any", false, false, false, 48)]), "html", null, true);
            yield "\" class=\"btn btn-sm btn-default\" role=\"button\" aria-pressed=\"true\">";
            yield $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("basics.update", [], "messages");
            yield "</a>
                                <button type=\"button\" class=\"btn btn-sm btn-default dropdown-toggle\" data-toggle=\"dropdown\">
                                    <span class=\"caret\"></span>
                                    <span class=\"sr-only\">Toggle Dropdown</span>
                                </button>
                                <div class=\"dropdown-menu\" role=\"menu\">
                                    <a class=\"dropdown-item\" href=\"#\" data-toggle=\"modal\" data-target=\"#modal-delete-";
            // line 54
            yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, $context["activity"], "id", [], "any", false, false, false, 54), "html", null, true);
            yield "\">";
            yield $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("basics.delete", [], "messages");
            yield "</a>
                                </div>

                                <div class=\"modal fade\" id=\"modal-delete-";
            // line 57
            yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, $context["activity"], "id", [], "any", false, false, false, 57), "html", null, true);
            yield "\">
                                    <div class=\"modal-dialog\">
                                        <div class=\"modal-content\">
                                            <div class=\"modal-header\">
                                                <h5 class=\"modal-title\">";
            // line 61
            yield $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("basics.delete.title", [], "messages");
            yield "</h5>
                                                <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\">
                                                    <span aria-hidden=\"true\">&times;</span>
                                                </button>
                                            </div>
                                            <div class=\"modal-body\">
                                                <p>";
            // line 67
            yield $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("activity.delete.message", [], "messages");
            yield "</p>
                                                <b>";
            // line 68
            yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, $context["activity"], "code", [], "any", false, false, false, 68), "html", null, true);
            yield "<br>";
            yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, $context["activity"], "name", [], "any", false, false, false, 68), "html", null, true);
            yield "</b>
                                            </div>
                                            <div class=\"modal-footer justify-content-between\">
                                                <button type=\"button\" class=\"btn btn-default\" data-dismiss=\"modal\">";
            // line 71
            yield $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("basics.no", [], "messages");
            yield "</button>
                                                <a href=\"";
            // line 72
            yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("app_delete_activity", ["id" => CoreExtension::getAttribute($this->env, $this->source, $context["activity"], "id", [], "any", false, false, false, 72)]), "html", null, true);
            yield "\" class=\"btn btn-danger\">";
            yield $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("basics.yes", [], "messages");
            yield "</a>
                                            </div>
                                        </div>
                                    </div>
                                </div>

                            </div>
                        </td>
                    </tr>
                    ";
        }
        $_parent = $context['_parent'];
        unset($context['_seq'], $context['_key'], $context['activity'], $context['_parent']);
        $context = array_intersect_key($context, $_parent) + $_parent;
        // line 82
        yield "                </tbody>
                </table>
            ";
        yield from [];
    }

    // line 85
    /**
     * @return iterable<null|scalar|\Stringable>
     */
    public function block_box_footer(array $context, array $blocks = []): iterable
    {
        $macros = $this->macros;
        // line 86
        yield "            ";
        if ((($tmp = ($context["autorisation"] ?? null)) && $tmp instanceof Markup ? (string) $tmp : $tmp)) {
            // line 87
            yield "                <div class=\"form-group row\">
                    <div class=\"col-sm-2\">
                        <a class=\"btn btn-block btn-danger\" href=\"#\" data-toggle=\"modal\" data-target=\"#modal-delete-all\">";
            // line 89
            yield $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("basics.delete", [], "messages");
            yield "</a>
                    </div>
                    ";
            // line 91
            if ((($this->extensions['Symfony\Bridge\Twig\Extension\SecurityExtension']->isGranted("ROLE_MANAGER") || $this->extensions['Symfony\Bridge\Twig\Extension\SecurityExtension']->isGranted("ROLE_DDD")) || $this->extensions['Symfony\Bridge\Twig\Extension\SecurityExtension']->isGranted("ROLE_DPP"))) {
                // line 92
                yield "                        <div class=\"col-sm-offset-2 col-sm-10\">
                            <a href=\"";
                // line 93
                yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("app_validate_activities", ["id" => CoreExtension::getAttribute($this->env, $this->source, ($context["action"] ?? null), "id", [], "any", false, false, false, 93)]), "html", null, true);
                yield "\" class=\"btn btn-block btn-primary\">
                                ";
                // line 94
                yield $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("basics.validate", [], "messages");
                // line 95
                yield "                            </a>
                        </div>
                    ";
            } else {
                // line 98
                yield "                         <div class=\"col-sm-offset-2 col-sm-10\" data-toggle=\"modal\" data-target=\"#modal-soumettre\">
                            <a href=\"#\" class=\"btn btn-block btn-primary\">
                                ";
                // line 100
                yield $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("Soumettre à la validation", [], "messages");
                // line 101
                yield "                            </a>
                        </div>
                    ";
            }
            // line 104
            yield "                </div>
                <div class=\"modal fade\" id=\"modal-delete-all\">
                    <div class=\"modal-dialog\">
                        <div class=\"modal-content\">
                            <div class=\"modal-header\">
                                <h5 class=\"modal-title\">";
            // line 109
            yield $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("basics.delete.title", [], "messages");
            yield "</h5>
                                <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\">
                                    <span aria-hidden=\"true\">&times;</span>
                                </button>
                            </div>
                            <div class=\"modal-body\">
                                <p class=\"text-center\">";
            // line 115
            yield $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("activity.delete.all.message", [], "messages");
            yield "</p>
                            </div>
                            <div class=\"modal-footer justify-content-between\">
                                <button type=\"button\" class=\"btn btn-default\" data-dismiss=\"modal\">";
            // line 118
            yield $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("basics.no", [], "messages");
            yield "</button>
                                <a href=\"";
            // line 119
            yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("app_delete_action", ["id" => CoreExtension::getAttribute($this->env, $this->source, ($context["action"] ?? null), "id", [], "any", false, false, false, 119)]), "html", null, true);
            yield "\" class=\"btn btn-danger\">";
            yield $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("basics.yes", [], "messages");
            yield "</a>
                            </div>
                        </div>
                    </div>
                </div>

                <div class=\"modal fade\" id=\"modal-soumettre\">
                    <div class=\"modal-dialog modal-lg\">
                        <div class=\"modal-content\">
                            <div class=\"modal-header bg-danger text-light\">
                                <h5 class=\"modal-title\">";
            // line 129
            yield $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("Soumettre pour validation", [], "messages");
            yield "</h5>
                                <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\">
                                    <span aria-hidden=\"true\">&times;</span>
                                </button>
                            </div>
                            <div class=\"modal-body\">
                                <p class=\"text-center\">
                                    En soumettant votre PTA à la validation par votre ";
            // line 136
            yield (((($tmp = ($context["showCommune"] ?? null)) && $tmp instanceof Markup ? (string) $tmp : $tmp)) ? ("SE") : ("DPAF"));
            yield ", vous reconnaissez avoir rigoureusement examiné le PTA chargé sur la plateforme. Aucune modification ne sera possible après la soumission.
                                </p>
                            </div>
                            <div class=\"modal-footer justify-content-between\">
                                <button type=\"button\" class=\"btn btn-default\" data-dismiss=\"modal\">";
            // line 140
            yield $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("basics.cancel", [], "messages");
            yield "</button>
                                <a href=\"";
            // line 141
            yield $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("app_soumettre_pta_action");
            yield "\" class=\"btn btn-danger\">";
            yield $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("Soumettre", [], "messages");
            yield "</a>
                            </div>
                        </div>
                    </div>
                </div>
            
            ";
        }
        // line 148
        yield "            ";
        yield from [];
    }

    /**
     * @codeCoverageIgnore
     */
    public function getTemplateName(): string
    {
        return "processing/validate_form.html.twig";
    }

    /**
     * @codeCoverageIgnore
     */
    public function isTraitable(): bool
    {
        return false;
    }

    /**
     * @codeCoverageIgnore
     */
    public function getDebugInfo(): array
    {
        return array (  597 => 148,  585 => 141,  581 => 140,  574 => 136,  564 => 129,  549 => 119,  545 => 118,  539 => 115,  530 => 109,  523 => 104,  518 => 101,  516 => 100,  512 => 98,  507 => 95,  505 => 94,  501 => 93,  498 => 92,  496 => 91,  491 => 89,  487 => 87,  484 => 86,  477 => 85,  470 => 82,  452 => 72,  448 => 71,  440 => 68,  436 => 67,  427 => 61,  420 => 57,  412 => 54,  401 => 48,  395 => 45,  391 => 44,  387 => 43,  383 => 42,  380 => 41,  376 => 40,  369 => 36,  365 => 35,  361 => 34,  357 => 33,  353 => 31,  346 => 30,  335 => 29,  274 => 22,  269 => 21,  263 => 19,  257 => 17,  254 => 16,  251 => 15,  244 => 14,  233 => 13,  129 => 160,  122 => 159,  115 => 155,  111 => 153,  109 => 152,  106 => 151,  103 => 150,  100 => 29,  98 => 28,  93 => 26,  90 => 25,  88 => 13,  83 => 12,  76 => 11,  70 => 8,  67 => 7,  63 => 5,  60 => 4,  53 => 3,  42 => 1,);
    }

    public function getSourceContext(): Source
    {
        return new Source("", "processing/validate_form.html.twig", "/var/www/html/templates/processing/validate_form.html.twig");
    }
}
