{# templates/panel_layout.html.twig #}
{# Muestra un panel único.
Variables:
show_panel_header|default(true): mostrar/ocultar el header del panel
show_panel_footer|default(false): mostrar/ocultar el footer del panel
panel_steps: opcional, número de pasos total a mostrar
panel_current_step: opcional, paso actual
Bloques:
panel_header_content: contenido del header
panel_title: título del header
panel_description: descripción que se muestra en el header
panel_content: contenido del body
panel_footer_content: contenido del footer
#}
{% extends "layout.html.twig" %}
{% block content %}
<div class="panel">
{# Panel header, shown by default #}
{% if show_panel_header ?? true == true %}
<div class="panel-header text-center">
{% block panel_header_content %}
<h1 class="panel-title">{% block panel_title %}{{'Pasarela de entrada'|trans}}{% endblock %}</h1>
<div class="panel-description text-normal mt-2">{% block panel_description %}{% endblock %}</div>
{% endblock %}
</div>
{% endif %}
{# Panel body #}
<div class="panel-body">
{% include "fragments/steps_nav.html.twig" %}
{% block panel_content %}Panel content goes here{% endblock %}
</div>
{# Panel footer, hidden by default #}
{% if show_panel_footer ?? false == true %}
<div class="panel-footer">
{% block panel_footer_content %}Footer content goes here{% endblock %}
</div>
{% endif %}
</div>
{% endblock %}