<table class="table table-striped table-bordered table-hover">
<tr>
<th>
Base movilización
<select id="base_select">
<option id="base_option_sel" value="">Adicionar base</option>
{% for base in bases %}
<option id="base_option_{{ base.id }}" value="{{ base.id }}" class="{% if basesEnProceso[base.id] is defined %}hide{% endif %}">{{ base }}</option>
{% endfor %}
</select>
</th>
<th>
Lugar de presentación
<span id='lugar_select' class='hide'>
<select>
<option id="lugar_option_sel" value="">Adicionar lugar</option>
{% for lugar in lugares %}
<option value="{{ lugar.id }}" class="lugar_option_{{ lugar.id }} {% if lugaresEnProceso[lugar.id] is defined %}hide{% endif %}">{{ lugar }}</option>
{% endfor %}
</select>
</span>
</th>
<th>
Unidad militar
<span id='unidad_select' class='hide'>
<select>
<option value="">Adicionar unidad</option>
{% for unidad in unidades %}
<option value="{{ unidad.id }}" class="unidad_option_{{ unidad.id }} {% if unidadesEnProceso[unidad.id] is defined %}hide{% endif %}">{{ unidad }}</option>
{% endfor %}
</select>
</span>
</th>
<th>
Jefe
</th>
<th>
Prioridad para asignación
</th>
<th>
Cupo masculino
</th>
<th>
% adicional cupo masculino
</th>
<th>
Cupo femenino
</th>
<th>
% adicional cupo femenino
</th>
</tr>
{% if elementosUsados is defined %}
{% for baseId, valoresBase in elementosUsados %}
{% include 'ProcesoReclutamiento\\tr_baseMovilizacion.html.twig' with { 'base': valoresBase['base'].base, 'centros': lugares, 'centrosUsados': valoresBase['centros'], 'lugaresEnProceso': lugaresEnProceso, 'baseUsada': valoresBase['base'], 'canDelete': valoresBase['canDelete'] } %}
{% for valoresCentro in valoresBase['centros'] %}
{% include 'ProcesoReclutamiento\\tr_centroMovilizacion.html.twig' with { 'baseId': baseId, 'centro': valoresCentro['centro'].lugar, 'unidades': unidades, 'unidadesUsadas': valoresCentro['unidades'], 'unidadesEnProceso': unidadesEnProceso, 'centroUsado': valoresCentro['centro'], 'canDelete': valoresCentro['canDelete'] } %}
{% endfor %}
{% endfor %}
{% endif %}
</table>