<?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;
/* @ProjectBizPortal/layout/boilerplate/main.html.twig */
class __TwigTemplate_e0568a934ecf356d0eec3fcf6e906c15 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->parent = false;
$this->blocks = [
'head' => [$this, 'block_head'],
'title' => [$this, 'block_title'],
'stylesheets' => [$this, 'block_stylesheets'],
'page_css' => [$this, 'block_page_css'],
'styles' => [$this, 'block_styles'],
'theme_styles' => [$this, 'block_theme_styles'],
'body' => [$this, 'block_body'],
'nav' => [$this, 'block_nav'],
'modals' => [$this, 'block_modals'],
'flashbag' => [$this, 'block_flashbag'],
'content' => [$this, 'block_content'],
'contextmenu' => [$this, 'block_contextmenu'],
'footer' => [$this, 'block_footer'],
'javascripts' => [$this, 'block_javascripts'],
'page_javascripts' => [$this, 'block_page_javascripts'],
];
}
protected function doDisplay(array $context, array $blocks = []): iterable
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "@ProjectBizPortal/layout/boilerplate/main.html.twig"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "@ProjectBizPortal/layout/boilerplate/main.html.twig"));
// line 1
yield "<!DOCTYPE html>
<html>
\t";
// line 3
yield from $this->unwrap()->yieldBlock('head', $context, $blocks);
// line 96
yield from $this->unwrap()->yieldBlock('body', $context, $blocks);
// line 216
yield "</html>
";
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
yield from [];
}
// line 3
/**
* @return iterable<null|scalar|\Stringable>
*/
public function block_head(array $context, array $blocks = []): iterable
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "head"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "head"));
// line 4
yield "\t\t<head>
\t\t\t<style>
\t\t\t\tbody {
\t\t\t\t\tvisibility: hidden;
\t\t\t\t}
\t\t\t\ttable {
\t\t\t\t\ttable-layout: fixed;
\t\t\t\t\twidth: 100%;
\t\t\t\t}
\t\t\t\ttable th,
\t\t\t\ttable td {
\t\t\t\t\twhite-space: nowrap;
\t\t\t\t\toverflow: hidden;
\t\t\t\t\ttext-overflow: ellipsis;
\t\t\t\t\tbox-sizing: border-box;
\t\t\t\t}
\t\t\t\t/* coloums widths */
\t\t\t\ttable th:nth-child(1),
\t\t\t\ttable td:nth-child(1) {
\t\t\t\t\twidth: 100px;
\t\t\t\t}
\t\t\t\ttable th:nth-child(2),
\t\t\t\ttable td:nth-child(2) {
\t\t\t\t\twidth: 500px;
\t\t\t\t}
\t\t\t\t/* other coloums default */
\t\t\t\ttable th:nth-child(n + 3),
\t\t\t\ttable td:nth-child(n + 3) {
\t\t\t\t\twidth: 140px;
\t\t\t\t}
\t\t\t\t/* özel override - Font Awesome ikon büyütme */
\t\t\t\ta.fa.fa-plus-square {
\t\t\t\t\tfont-size: 3em !important;
\t\t\t\t\tcolor: #2F70C2 !important;
\t\t\t\t\tvertical-align: middle !important;
\t\t\t\t\tline-height: 1 !important;
\t\t\t\t\tmargin-top: 6px !important;
\t\t\t\t}
\t\t\t</style>
\t\t\t<meta charset=\"utf-8\">
\t\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">
\t\t\t<title>
\t\t\t\t";
// line 51
yield from $this->unwrap()->yieldBlock('title', $context, $blocks);
// line 53
yield "\t\t\t</title>
\t\t\t";
// line 55
yield from $this->unwrap()->yieldBlock('stylesheets', $context, $blocks);
// line 73
yield "
\t\t\t<style type=\"text/css\">
\t\t\t\t.navBg {
\t\t\t\t\tbackground-color: ";
// line 76
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, (isset($context["colors"]) || array_key_exists("colors", $context) ? $context["colors"] : (function () { throw new RuntimeError('Variable "colors" does not exist.', 76, $this->source); })()), "navBg", [], "any", false, false, false, 76), "html", null, true);
yield "
\t\t\t\t}
\t\t\t\t";
// line 80
if ( !(isset($context["print_colors"]) || array_key_exists("print_colors", $context) ? $context["print_colors"] : (function () { throw new RuntimeError('Variable "print_colors" does not exist.', 80, $this->source); })())) {
// line 81
yield "\t\t\t\t\t@media print {
\t\t\t\t\t\t* {
\t\t\t\t\t\t\tbackground-color: transparent !important;
\t\t\t\t\t\t\tcolor: #000 !important;
\t\t\t\t\t\t}
\t\t\t\t\t}
\t\t\t\t";
}
// line 88
yield "\t\t\t</style>
\t\t\t";
// line 89
yield from $this->unwrap()->yieldBlock('styles', $context, $blocks);
// line 90
yield "
\t\t\t";
// line 91
yield from $this->unwrap()->yieldBlock('theme_styles', $context, $blocks);
// line 94
yield "\t\t</head>
\t</html>
</head>";
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
yield from [];
}
// line 51
/**
* @return iterable<null|scalar|\Stringable>
*/
public function block_title(array $context, array $blocks = []): iterable
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "title"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "title"));
yield "Test
\t\t\t\t";
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
yield from [];
}
// line 55
/**
* @return iterable<null|scalar|\Stringable>
*/
public function block_stylesheets(array $context, array $blocks = []): iterable
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "stylesheets"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "stylesheets"));
// line 56
yield "
\t\t\t\t";
// line 57
yield $this->extensions['Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension']->renderWebpackLinkTags("app");
yield "
\t\t\t\t";
// line 58
yield $this->extensions['Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension']->renderWebpackLinkTags("assetic/bootstrap_css");
yield "
\t\t\t\t<link href=\"";
// line 59
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/projectbizportal/css/b02b8a0.css"), "html", null, true);
yield "\" rel=\"stylesheet\"/>
\t\t\t\t<link href=\"";
// line 60
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/projectbizportal/css/97876bb.css"), "html", null, true);
yield "\" rel=\"stylesheet\"/>
\t\t\t\t<link href=\"";
// line 61
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/projectbizportal/css/font-awesome.min.css"), "html", null, true);
yield "\" rel=\"stylesheet\"/>
\t\t\t\t<link href=\"";
// line 62
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/projectbizportal/css/jquery.multiselect2side.css"), "html", null, true);
yield "\" rel=\"stylesheet\"/>
\t\t\t\t<link href=\"";
// line 63
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/projectbizportal/css/ms2side.css"), "html", null, true);
yield "\" rel=\"stylesheet\"/>
\t\t\t\t<link href=\"";
// line 64
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/projectbizportal/css/jquery-ui-1.11.4.custom.min.css"), "html", null, true);
yield "\" rel=\"stylesheet\"/>
\t\t\t\t";
// line 65
yield $this->extensions['Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension']->renderWebpackLinkTags("css/flatpickr");
yield "
\t\t\t\t";
// line 66
yield $this->extensions['Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension']->renderWebpackLinkTags("css/main");
yield "
\t\t\t\t<link href=\"";
// line 67
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/projectbizportal/css/submenu.css"), "html", null, true);
yield "\" rel=\"stylesheet\"/>
\t\t\t\t";
// line 68
yield $this->extensions['Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension']->renderWebpackLinkTags("css/controlling");
yield "
\t\t\t\t<link href=\"";
// line 69
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/projectbizportal/css/dropzone.min.css"), "html", null, true);
yield "\" rel=\"stylesheet\"/>
\t\t\t\t";
// line 71
yield from $this->unwrap()->yieldBlock('page_css', $context, $blocks);
// line 72
yield "\t\t\t";
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
yield from [];
}
// line 71
/**
* @return iterable<null|scalar|\Stringable>
*/
public function block_page_css(array $context, array $blocks = []): iterable
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "page_css"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "page_css"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
yield from [];
}
// line 89
/**
* @return iterable<null|scalar|\Stringable>
*/
public function block_styles(array $context, array $blocks = []): iterable
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "styles"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "styles"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
yield from [];
}
// line 91
/**
* @return iterable<null|scalar|\Stringable>
*/
public function block_theme_styles(array $context, array $blocks = []): iterable
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "theme_styles"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "theme_styles"));
// line 92
yield "\t\t\t\t";
yield Twig\Extension\CoreExtension::include($this->env, $context, "@ProjectBizPortal/layout/include.theme-styles.html.twig");
yield "
\t\t\t";
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
yield from [];
}
// line 96
/**
* @return iterable<null|scalar|\Stringable>
*/
public function block_body(array $context, array $blocks = []): iterable
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "body"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "body"));
// line 97
yield "<body style=\"padding-top: 120px\" ";
yield $this->extensions['ProjectBiz\PortalBundle\Twig\BodyClassExtension']->getBodyClass();
yield ">
\t<div id=\"page\">
\t\t";
// line 99
yield from $this->unwrap()->yieldBlock('nav', $context, $blocks);
// line 100
yield "
\t\t";
// line 101
yield from $this->unwrap()->yieldBlock('modals', $context, $blocks);
// line 104
yield "
\t\t";
// line 105
yield from $this->unwrap()->yieldBlock('flashbag', $context, $blocks);
// line 108
yield "
\t\t";
// line 109
yield from $this->unwrap()->yieldBlock('content', $context, $blocks);
// line 112
yield "
\t\t<br style=\"clear: both\">
\t\t";
// line 115
yield from $this->unwrap()->yieldBlock('contextmenu', $context, $blocks);
// line 127
yield "\t</div>
\t";
// line 129
yield from $this->unwrap()->yieldBlock('footer', $context, $blocks);
// line 132
yield "
\t";
// line 133
yield from $this->unwrap()->yieldBlock('javascripts', $context, $blocks);
// line 211
yield "\t<script>
\t\twindow.addEventListener('load', function () {
document.body.style.visibility = 'visible';
});
\t</script>
</body>";
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
yield from [];
}
// line 99
/**
* @return iterable<null|scalar|\Stringable>
*/
public function block_nav(array $context, array $blocks = []): iterable
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "nav"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "nav"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
yield from [];
}
// line 101
/**
* @return iterable<null|scalar|\Stringable>
*/
public function block_modals(array $context, array $blocks = []): iterable
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "modals"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "modals"));
// line 102
yield "\t\t\t";
yield Twig\Extension\CoreExtension::include($this->env, $context, "@ProjectBizPortal/layout/include.popup-modal.html.twig");
yield "
\t\t";
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
yield from [];
}
// line 105
/**
* @return iterable<null|scalar|\Stringable>
*/
public function block_flashbag(array $context, array $blocks = []): iterable
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "flashbag"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "flashbag"));
// line 106
yield "\t\t\t";
yield Twig\Extension\CoreExtension::include($this->env, $context, "@ProjectBizPortal/layout/include.flashbag.html.twig");
yield "
\t\t";
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
yield from [];
}
// line 109
/**
* @return iterable<null|scalar|\Stringable>
*/
public function block_content(array $context, array $blocks = []): iterable
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "content"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "content"));
// line 110
yield "\t\t\t<h1>Die Seite sollten den Inhaltsblock füllen.</h1>
\t\t";
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
yield from [];
}
// line 115
/**
* @return iterable<null|scalar|\Stringable>
*/
public function block_contextmenu(array $context, array $blocks = []): iterable
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "contextmenu"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "contextmenu"));
// line 116
yield "\t\t\t<div id=\"context-menu\">
\t\t\t\t<ul class=\"dropdown-menu\" role=\"menu\">
\t\t\t\t\t<li>
\t\t\t\t\t\t<a tabindex=\"-1\" href=\"#\">Action</a>
\t\t\t\t\t</li>
\t\t\t\t\t<li>
\t\t\t\t\t\t<a tabindex=\"-1\" href=\"#\">Separated link</a>
\t\t\t\t\t</li>
\t\t\t\t</ul>
\t\t\t</div>
\t\t";
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
yield from [];
}
// line 129
/**
* @return iterable<null|scalar|\Stringable>
*/
public function block_footer(array $context, array $blocks = []): iterable
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "footer"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "footer"));
// line 130
yield "\t\t";
yield Twig\Extension\CoreExtension::include($this->env, $context, "@ProjectBizPortal/layout/include.footer.html.twig");
yield "
\t";
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
yield from [];
}
// line 133
/**
* @return iterable<null|scalar|\Stringable>
*/
public function block_javascripts(array $context, array $blocks = []): iterable
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "javascripts"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "javascripts"));
// line 134
yield "\t\t<script type=\"text/javascript\" defer>
\t\t\tCKEDITOR_BASEPATH = '";
// line 135
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/projectbizportal/js/ckeditor/"), "html", null, true);
yield "';
\t\t</script>
\t\t";
// line 138
yield $this->extensions['Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension']->renderWebpackScriptTags("app");
yield "
\t\t";
// line 140
yield $this->extensions['Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension']->renderWebpackScriptTags("js/ckeditor");
yield "
\t\t";
// line 142
yield $this->extensions['Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension']->renderWebpackScriptTags("js/flatpickr.min");
yield "
\t\t";
// line 144
yield $this->extensions['Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension']->renderWebpackScriptTags("js/url-search-params-polyfill");
yield "
\t\t<script type=\"text/javascript\" src=\"";
// line 147
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/projectbizportal/js/jquery-ui-1.11.4.custom.min.js"), "html", null, true);
yield "\" defer></script>
\t\t<script type=\"text/javascript\" src=\"";
// line 149
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/projectbizportal/js/bootstrap-contextmenu.js"), "html", null, true);
yield "\" defer></script>
\t\t<script type=\"text/javascript\" src=\"";
// line 150
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/projectbizportal/js/jquery.floatThead.js"), "html", null, true);
yield "\" defer></script>
\t\t<!-- <script src=\"https://cdnjs.cloudflare.com/ajax/libs/floatthead/2.2.5/jquery.floatThead.min.js\"></script> -->
\t\t<script type=\"text/javascript\" src=\"";
// line 153
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/projectbizportal/js/auto-increment.js"), "html", null, true);
yield "\" defer></script>
\t\t";
// line 154
yield $this->extensions['Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension']->renderWebpackScriptTags("coffee/table-contextmenu.coffee");
yield "
\t\t";
// line 155
yield $this->extensions['Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension']->renderWebpackScriptTags("coffee/log-modals.coffee");
yield "
\t\t";
// line 156
yield $this->extensions['Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension']->renderWebpackScriptTags("coffee/flashbag-modal.coffee");
yield "
\t\t";
// line 157
yield $this->extensions['Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension']->renderWebpackScriptTags("coffee/prevent-double-click.coffee");
yield "
\t\t";
// line 158
yield $this->extensions['Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension']->renderWebpackScriptTags("coffee/overflow.coffee");
yield "
\t\t";
// line 159
yield $this->extensions['Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension']->renderWebpackScriptTags("coffee/tables.coffee");
yield "
\t\t";
// line 160
yield $this->extensions['Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension']->renderWebpackScriptTags("coffee/rights-editing.coffee");
yield "
\t\t<script>
\t\t\twindow.PB_ASSETS = window.PB_ASSETS || {};
window.PB_ASSETS.ckeditor = ";
// line 163
yield json_encode($this->extensions['Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension']->getWebpackJsFiles("js/ckeditor"));
yield ";
window.PB_ASSETS.flatpickr = ";
// line 164
yield json_encode($this->extensions['Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension']->getWebpackJsFiles("js/flatpickr.min"));
yield ";
window.PB_ASSETS.urlPolyfill = ";
// line 165
yield json_encode($this->extensions['Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension']->getWebpackJsFiles("js/url-search-params-polyfill"));
yield ";
\t\t</script>
\t\t";
// line 167
yield $this->extensions['Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension']->renderWebpackScriptTags("coffee/enable-plugins.coffee");
yield "
\t\t";
// line 168
yield $this->extensions['Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension']->renderWebpackScriptTags("coffee/table-sticky.coffee");
yield "
\t\t<script type=\"text/javascript\" src=\"";
// line 169
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/projectbizportal/js/tooltips.js"), "html", null, true);
yield "\" defer></script>
\t\t<script type=\"text/javascript\" src=\"";
// line 170
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/projectbizportal/js/jquery.multiselect2side.js"), "html", null, true);
yield "\" defer></script>
\t\t<script type=\"text/javascript\" src=\"";
// line 171
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/projectbizportal/js/help-modal.js"), "html", null, true);
yield "\" defer></script>
\t\t<script type=\"text/javascript\" src=\"";
// line 172
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/projectbizportal/js/keyboard.js"), "html", null, true);
yield "\" defer></script>
\t\t<script type=\"text/javascript\" src=\"";
// line 173
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/projectbizportal/js/dsgvo.js"), "html", null, true);
yield "\" defer></script>
\t\t<script type=\"text/javascript\" src=\"";
// line 174
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/projectbizportal/js/optical-code.js"), "html", null, true);
yield "\" defer></script>
\t\t<script type=\"text/javascript\" src=\"";
// line 175
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/projectbizportal/js/directory-selection.js"), "html", null, true);
yield "\" defer></script>
\t\t<script type=\"text/javascript\" src=\"";
// line 176
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/projectbizportal/js/edit-cell.js"), "html", null, true);
yield "\" defer></script>
\t\t<script type=\"text/javascript\" src=\"";
// line 177
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/projectbizportal/js/custom-notification.js"), "html", null, true);
yield "\" defer></script>
\t\t<script type=\"text/javascript\" src=\"";
// line 178
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/projectbizportal/js/dropzone.min.js"), "html", null, true);
yield "\" defer></script>
\t\t<script type=\"text/javascript\" src=\"";
// line 179
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/projectbizportal/js/file-upload.js"), "html", null, true);
yield "\" defer></script>
\t\t";
// line 181
yield from $this->unwrap()->yieldBlock('page_javascripts', $context, $blocks);
// line 182
yield "\t\t<script type=\"text/javascript\" defer>
\t\t\twindow.locale = {
search: '";
// line 184
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("Suche"), "html", null, true);
yield "',
emptyList: '";
// line 185
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("Keine Einträge gefunden"), "html", null, true);
yield "'
};";
// line 186
if (array_key_exists("panel", $context)) {
yield "window.spmPanel = '";
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape((isset($context["panel"]) || array_key_exists("panel", $context) ? $context["panel"] : (function () { throw new RuntimeError('Variable "panel" does not exist.', 186, $this->source); })()), "html", null, true);
yield "'";
}
yield "\$(function () {
\$('.ms2side').multiselect2side({
labelTop: '<i class=\\'fa fa-angle-double-up\\'></i>',
labelBottom: '<i class=\\'fa fa-angle-double-down\\'></i>',
labelUp: '<i class=\\'fa fa-angle-up\\'></i>',
labelDown: '<i class=\\'fa fa-angle-down\\'></i>',
labelLeftOne: '<i class=\\'fa fa-angle-left\\'></i>',
labelRightOne: '<i class=\\'fa fa-angle-right\\'></i>',
labelLeftAll: '<i class=\\'fa fa-angle-double-left\\'></i>',
labelRightAll: '<i class=\\'fa fa-angle-double-right\\'></i>',
labelSort: '<i class=\\'fa fa-sort-alpha-asc\\'></i>',
search: '";
// line 197
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("Suchen"), "html", null, true);
yield "',
labelsx: '";
// line 198
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("Verfügbar"), "html", null, true);
yield "',
labeldx: '";
// line 199
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("Ausgewählt"), "html", null, true);
yield "'
});
\$(\".modal-dialog\").draggable({handle: \".modal-header\"});
});
window.auto_increment_path = \"";
// line 205
yield $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("xhr_auto_increment");
yield "\";
let notifications = ";
// line 206
yield $this->extensions['ProjectBiz\PortalBundle\Twig\CustomNotificationExtension']->CustomNotifications();
yield ";
let notificationsFlagAsShownUrl = '";
// line 207
yield $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("citibiz.custom_notifications.flag_as_shown");
yield "';
let pbfSymbol = '";
// line 208
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/projectbizportal/images/pbf_symbol.png"), "html", null, true);
yield "';
\t\t</script>
\t";
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
yield from [];
}
// line 181
/**
* @return iterable<null|scalar|\Stringable>
*/
public function block_page_javascripts(array $context, array $blocks = []): iterable
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "page_javascripts"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "page_javascripts"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
yield from [];
}
/**
* @codeCoverageIgnore
*/
public function getTemplateName(): string
{
return "@ProjectBizPortal/layout/boilerplate/main.html.twig";
}
/**
* @codeCoverageIgnore
*/
public function getDebugInfo(): array
{
return array ( 841 => 181, 827 => 208, 823 => 207, 819 => 206, 815 => 205, 806 => 199, 802 => 198, 798 => 197, 780 => 186, 776 => 185, 772 => 184, 768 => 182, 766 => 181, 761 => 179, 757 => 178, 753 => 177, 749 => 176, 745 => 175, 741 => 174, 737 => 173, 733 => 172, 729 => 171, 725 => 170, 721 => 169, 717 => 168, 713 => 167, 708 => 165, 704 => 164, 700 => 163, 694 => 160, 690 => 159, 686 => 158, 682 => 157, 678 => 156, 674 => 155, 670 => 154, 666 => 153, 660 => 150, 656 => 149, 651 => 147, 645 => 144, 640 => 142, 635 => 140, 630 => 138, 624 => 135, 621 => 134, 608 => 133, 594 => 130, 581 => 129, 560 => 116, 547 => 115, 535 => 110, 522 => 109, 508 => 106, 495 => 105, 481 => 102, 468 => 101, 446 => 99, 430 => 211, 428 => 133, 425 => 132, 423 => 129, 419 => 127, 417 => 115, 412 => 112, 410 => 109, 407 => 108, 405 => 105, 402 => 104, 400 => 101, 397 => 100, 395 => 99, 389 => 97, 376 => 96, 362 => 92, 349 => 91, 327 => 89, 305 => 71, 294 => 72, 292 => 71, 287 => 69, 283 => 68, 279 => 67, 275 => 66, 271 => 65, 267 => 64, 263 => 63, 259 => 62, 255 => 61, 251 => 60, 247 => 59, 243 => 58, 239 => 57, 236 => 56, 223 => 55, 199 => 51, 186 => 94, 184 => 91, 181 => 90, 179 => 89, 176 => 88, 167 => 81, 165 => 80, 158 => 76, 153 => 73, 151 => 55, 147 => 53, 145 => 51, 96 => 4, 83 => 3, 71 => 216, 69 => 96, 67 => 3, 63 => 1,);
}
public function getSourceContext(): Source
{
return new Source("<!DOCTYPE html>
<html>
\t{% block head %}
\t\t<head>
\t\t\t<style>
\t\t\t\tbody {
\t\t\t\t\tvisibility: hidden;
\t\t\t\t}
\t\t\t\ttable {
\t\t\t\t\ttable-layout: fixed;
\t\t\t\t\twidth: 100%;
\t\t\t\t}
\t\t\t\ttable th,
\t\t\t\ttable td {
\t\t\t\t\twhite-space: nowrap;
\t\t\t\t\toverflow: hidden;
\t\t\t\t\ttext-overflow: ellipsis;
\t\t\t\t\tbox-sizing: border-box;
\t\t\t\t}
\t\t\t\t/* coloums widths */
\t\t\t\ttable th:nth-child(1),
\t\t\t\ttable td:nth-child(1) {
\t\t\t\t\twidth: 100px;
\t\t\t\t}
\t\t\t\ttable th:nth-child(2),
\t\t\t\ttable td:nth-child(2) {
\t\t\t\t\twidth: 500px;
\t\t\t\t}
\t\t\t\t/* other coloums default */
\t\t\t\ttable th:nth-child(n + 3),
\t\t\t\ttable td:nth-child(n + 3) {
\t\t\t\t\twidth: 140px;
\t\t\t\t}
\t\t\t\t/* özel override - Font Awesome ikon büyütme */
\t\t\t\ta.fa.fa-plus-square {
\t\t\t\t\tfont-size: 3em !important;
\t\t\t\t\tcolor: #2F70C2 !important;
\t\t\t\t\tvertical-align: middle !important;
\t\t\t\t\tline-height: 1 !important;
\t\t\t\t\tmargin-top: 6px !important;
\t\t\t\t}
\t\t\t</style>
\t\t\t<meta charset=\"utf-8\">
\t\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">
\t\t\t<title>
\t\t\t\t{% block title %}Test
\t\t\t\t{% endblock %}
\t\t\t</title>
\t\t\t{% block stylesheets %}
\t\t\t\t{{ encore_entry_link_tags('app') }}
\t\t\t\t{{ encore_entry_link_tags('assetic/bootstrap_css') }}
\t\t\t\t<link href=\"{{ asset('bundles/projectbizportal/css/b02b8a0.css') }}\" rel=\"stylesheet\"/>
\t\t\t\t<link href=\"{{ asset('bundles/projectbizportal/css/97876bb.css') }}\" rel=\"stylesheet\"/>
\t\t\t\t<link href=\"{{ asset('bundles/projectbizportal/css/font-awesome.min.css') }}\" rel=\"stylesheet\"/>
\t\t\t\t<link href=\"{{ asset('bundles/projectbizportal/css/jquery.multiselect2side.css') }}\" rel=\"stylesheet\"/>
\t\t\t\t<link href=\"{{ asset('bundles/projectbizportal/css/ms2side.css') }}\" rel=\"stylesheet\"/>
\t\t\t\t<link href=\"{{ asset('bundles/projectbizportal/css/jquery-ui-1.11.4.custom.min.css') }}\" rel=\"stylesheet\"/>
\t\t\t\t{{ encore_entry_link_tags('css/flatpickr') }}
\t\t\t\t{{ encore_entry_link_tags('css/main') }}
\t\t\t\t<link href=\"{{ asset('bundles/projectbizportal/css/submenu.css') }}\" rel=\"stylesheet\"/>
\t\t\t\t{{ encore_entry_link_tags('css/controlling') }}
\t\t\t\t<link href=\"{{ asset('bundles/projectbizportal/css/dropzone.min.css') }}\" rel=\"stylesheet\"/>
\t\t\t\t{% block page_css %}{% endblock %}
\t\t\t{% endblock %}
\t\t\t<style type=\"text/css\">
\t\t\t\t.navBg {
\t\t\t\t\tbackground-color: {{colors.navBg}}
\t\t\t\t}
\t\t\t\t{% if not print_colors %}
\t\t\t\t\t@media print {
\t\t\t\t\t\t* {
\t\t\t\t\t\t\tbackground-color: transparent !important;
\t\t\t\t\t\t\tcolor: #000 !important;
\t\t\t\t\t\t}
\t\t\t\t\t}
\t\t\t\t{% endif %}
\t\t\t</style>
\t\t\t{% block styles %}{% endblock %}
\t\t\t{% block theme_styles %}
\t\t\t\t{{ include('@ProjectBizPortal/layout/include.theme-styles.html.twig') }}
\t\t\t{% endblock %}
\t\t</head>
\t</html>
</head>{% endblock %}{% block body %}
<body style=\"padding-top: 120px\" {{ bodyclass() }}>
\t<div id=\"page\">
\t\t{% block nav %}{% endblock %}
\t\t{% block modals %}
\t\t\t{{ include('@ProjectBizPortal/layout/include.popup-modal.html.twig') }}
\t\t{% endblock %}
\t\t{% block flashbag %}
\t\t\t{{ include('@ProjectBizPortal/layout/include.flashbag.html.twig') }}
\t\t{% endblock %}
\t\t{% block content %}
\t\t\t<h1>Die Seite sollten den Inhaltsblock füllen.</h1>
\t\t{% endblock %}
\t\t<br style=\"clear: both\">
\t\t{% block contextmenu %}
\t\t\t<div id=\"context-menu\">
\t\t\t\t<ul class=\"dropdown-menu\" role=\"menu\">
\t\t\t\t\t<li>
\t\t\t\t\t\t<a tabindex=\"-1\" href=\"#\">Action</a>
\t\t\t\t\t</li>
\t\t\t\t\t<li>
\t\t\t\t\t\t<a tabindex=\"-1\" href=\"#\">Separated link</a>
\t\t\t\t\t</li>
\t\t\t\t</ul>
\t\t\t</div>
\t\t{% endblock %}
\t</div>
\t{% block footer %}
\t\t{{ include('@ProjectBizPortal/layout/include.footer.html.twig') }}
\t{% endblock %}
\t{% block javascripts %}
\t\t<script type=\"text/javascript\" defer>
\t\t\tCKEDITOR_BASEPATH = '{{ asset('bundles/projectbizportal/js/ckeditor/') }}';
\t\t</script>
\t\t{{ encore_entry_script_tags('app') }}
\t\t{{ encore_entry_script_tags('js/ckeditor') }}
\t\t{{ encore_entry_script_tags('js/flatpickr.min') }}
\t\t{{ encore_entry_script_tags('js/url-search-params-polyfill') }}
\t\t<script type=\"text/javascript\" src=\"{{ asset('bundles/projectbizportal/js/jquery-ui-1.11.4.custom.min.js') }}\" defer></script>
\t\t<script type=\"text/javascript\" src=\"{{ asset('bundles/projectbizportal/js/bootstrap-contextmenu.js') }}\" defer></script>
\t\t<script type=\"text/javascript\" src=\"{{ asset('bundles/projectbizportal/js/jquery.floatThead.js') }}\" defer></script>
\t\t<!-- <script src=\"https://cdnjs.cloudflare.com/ajax/libs/floatthead/2.2.5/jquery.floatThead.min.js\"></script> -->
\t\t<script type=\"text/javascript\" src=\"{{ asset('bundles/projectbizportal/js/auto-increment.js') }}\" defer></script>
\t\t{{ encore_entry_script_tags('coffee/table-contextmenu.coffee') }}
\t\t{{ encore_entry_script_tags('coffee/log-modals.coffee') }}
\t\t{{ encore_entry_script_tags('coffee/flashbag-modal.coffee') }}
\t\t{{ encore_entry_script_tags('coffee/prevent-double-click.coffee') }}
\t\t{{ encore_entry_script_tags('coffee/overflow.coffee') }}
\t\t{{ encore_entry_script_tags('coffee/tables.coffee') }}
\t\t{{ encore_entry_script_tags('coffee/rights-editing.coffee') }}
\t\t<script>
\t\t\twindow.PB_ASSETS = window.PB_ASSETS || {};
window.PB_ASSETS.ckeditor = {{ encore_entry_js_files('js/ckeditor')|json_encode|raw }};
window.PB_ASSETS.flatpickr = {{ encore_entry_js_files('js/flatpickr.min')|json_encode|raw }};
window.PB_ASSETS.urlPolyfill = {{ encore_entry_js_files('js/url-search-params-polyfill')|json_encode|raw }};
\t\t</script>
\t\t{{ encore_entry_script_tags('coffee/enable-plugins.coffee') }}
\t\t{{ encore_entry_script_tags('coffee/table-sticky.coffee') }}
\t\t<script type=\"text/javascript\" src=\"{{ asset('bundles/projectbizportal/js/tooltips.js') }}\" defer></script>
\t\t<script type=\"text/javascript\" src=\"{{ asset('bundles/projectbizportal/js/jquery.multiselect2side.js') }}\" defer></script>
\t\t<script type=\"text/javascript\" src=\"{{ asset('bundles/projectbizportal/js/help-modal.js') }}\" defer></script>
\t\t<script type=\"text/javascript\" src=\"{{ asset('bundles/projectbizportal/js/keyboard.js') }}\" defer></script>
\t\t<script type=\"text/javascript\" src=\"{{ asset('bundles/projectbizportal/js/dsgvo.js') }}\" defer></script>
\t\t<script type=\"text/javascript\" src=\"{{ asset('bundles/projectbizportal/js/optical-code.js') }}\" defer></script>
\t\t<script type=\"text/javascript\" src=\"{{ asset('bundles/projectbizportal/js/directory-selection.js') }}\" defer></script>
\t\t<script type=\"text/javascript\" src=\"{{ asset('bundles/projectbizportal/js/edit-cell.js') }}\" defer></script>
\t\t<script type=\"text/javascript\" src=\"{{ asset('bundles/projectbizportal/js/custom-notification.js') }}\" defer></script>
\t\t<script type=\"text/javascript\" src=\"{{ asset('bundles/projectbizportal/js/dropzone.min.js') }}\" defer></script>
\t\t<script type=\"text/javascript\" src=\"{{ asset('bundles/projectbizportal/js/file-upload.js') }}\" defer></script>
\t\t{% block page_javascripts %}{% endblock %}
\t\t<script type=\"text/javascript\" defer>
\t\t\twindow.locale = {
search: '{{ 'Suche' | trans }}',
emptyList: '{{ 'Keine Einträge gefunden' | trans }}'
};{% if panel is defined %}window.spmPanel = '{{ panel }}'{% endif %}\$(function () {
\$('.ms2side').multiselect2side({
labelTop: '<i class=\\'fa fa-angle-double-up\\'></i>',
labelBottom: '<i class=\\'fa fa-angle-double-down\\'></i>',
labelUp: '<i class=\\'fa fa-angle-up\\'></i>',
labelDown: '<i class=\\'fa fa-angle-down\\'></i>',
labelLeftOne: '<i class=\\'fa fa-angle-left\\'></i>',
labelRightOne: '<i class=\\'fa fa-angle-right\\'></i>',
labelLeftAll: '<i class=\\'fa fa-angle-double-left\\'></i>',
labelRightAll: '<i class=\\'fa fa-angle-double-right\\'></i>',
labelSort: '<i class=\\'fa fa-sort-alpha-asc\\'></i>',
search: '{{ 'Suchen' | trans }}',
labelsx: '{{ 'Verfügbar' | trans }}',
labeldx: '{{ 'Ausgewählt' | trans }}'
});
\$(\".modal-dialog\").draggable({handle: \".modal-header\"});
});
window.auto_increment_path = \"{{ path('xhr_auto_increment') }}\";
let notifications = {{ custom_notifications() }};
let notificationsFlagAsShownUrl = '{{ path('citibiz.custom_notifications.flag_as_shown') }}';
let pbfSymbol = '{{ asset('bundles/projectbizportal/images/pbf_symbol.png') }}';
\t\t</script>
\t{% endblock %}
\t<script>
\t\twindow.addEventListener('load', function () {
document.body.style.visibility = 'visible';
});
\t</script>
</body>{% endblock %}</html>
", "@ProjectBizPortal/layout/boilerplate/main.html.twig", "D:\\srv\\portal\\tracingandtracking-portal\\vendor\\project-biz\\portal-bundle\\src\\Resources\\views\\layout\\boilerplate\\main.html.twig");
}
}