{% set is_admin = is_granted('ROLE_ADMIN') %}{% set route = app.request.get('_route') %}{% set is_dashboard = route == 'dashboard' %}{% set menu_type = is_dashboard ? 'home' : 'interior' %}<!DOCTYPE html><html lang="es"><head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><title>{% block title 'Plataforma de Compras de BancoEstado Express' %}</title><link rel="icon" href="/favicon.ico">{% block head_extra %}{% endblock %}<meta http-equiv="cache-control" content="max-age=0" /><meta http-equiv="cache-control" content="no-cache" /><meta http-equiv="expires" content="0" /><meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" /><meta http-equiv="pragma" content="no-cache" /><meta name="viewport" content="width=device-width, initial-scale=1">{#<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.11.8/umd/popper.min.js" integrity="sha512-TPh2Oxlg1zp+kz3nFA0C5vVC6leG/6mm1z9+mA81MI5eaUVqasPLO8Cuk4gMF4gUfP5etR73rgU/8PNMsSesoQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script><script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js"></script>Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}{% block stylesheets %}{{ encore_entry_link_tags('app') }}{% endblock %}{% block head_stylesheets %}{% endblock %}{% block javascripts %}{{ encore_entry_script_tags('app') }}{% endblock %}</head>{% set body_data %}{% block body_data %}{% endblock %}{% endset %}<body id="{% block body_id %}{% endblock %}" class="{% block body_cls %}{% endblock %} {{- is_admin -}} {{- is_dashboard -}}" {{ body_data|raw }}>{% block body %}{% endblock %}{% block body_javascript %}{% endblock %}<script>// Inicializar tooltips (opcional, se inicializan automáticamente con data-bs-toggle="tooltip")// const tooltipTriggerList = document.querySelectorAll('[data-bs-toggle="tooltip"]');// const tooltipList = [...tooltipTriggerList].map(tooltipTriggerEl => new bootstrap.Tooltip(tooltipTriggerEl));//document.addEventListener("DOMContentLoaded", function() {// Seleccionamos el elemento mediante el atributo 'for'//const label = document.querySelector('label[for="solicitud_compra_informacion_compra_descripcion"]');// Si el elemento existe, aplicamos el estilo//if (label) {//label.style.padding = "0 0 5px 35px";//}//});</script></body></html>