src/templates/ProcesoReclutamiento/basesCentrosUnidades.html.twig line 1

Open in your IDE?
  1.                             
  2. <table class="table table-striped table-bordered table-hover">
  3.     <tr>
  4.         <th>
  5.             Base movilización
  6.             <select id="base_select">
  7.                 <option id="base_option_sel" value="">Adicionar base</option>
  8.                 {% for base in bases %}
  9.                     <option id="base_option_{{ base.id }}" value="{{ base.id }}" class="{% if basesEnProceso[base.id] is defined %}hide{% endif %}">{{ base }}</option>
  10.                 {% endfor %}
  11.             </select>
  12.         </th>
  13.         <th>
  14.             Lugar de presentación
  15.             <span id='lugar_select' class='hide'>
  16.                 <select>
  17.                     <option id="lugar_option_sel" value="">Adicionar lugar</option>
  18.                     {% for lugar in lugares %}
  19.                         <option  value="{{ lugar.id }}" class="lugar_option_{{ lugar.id }} {% if lugaresEnProceso[lugar.id] is defined %}hide{% endif %}">{{ lugar }}</option>
  20.                     {% endfor %}
  21.                 </select>
  22.             </span>
  23.         </th>
  24.         <th>
  25.             Unidad militar
  26.             <span id='unidad_select' class='hide'>
  27.                 <select>
  28.                     <option value="">Adicionar unidad</option>
  29.                     {% for unidad in unidades %}
  30.                         <option  value="{{ unidad.id }}" class="unidad_option_{{ unidad.id }} {% if unidadesEnProceso[unidad.id] is defined %}hide{% endif %}">{{ unidad }}</option>
  31.                     {% endfor %}
  32.                 </select>
  33.             </span>
  34.         </th>
  35.         <th>
  36.             Jefe
  37.         </th>
  38.         <th>
  39.             Prioridad para asignación
  40.         </th>
  41.         <th>
  42.             Cupo masculino
  43.         </th>
  44.         <th>
  45.             % adicional cupo masculino
  46.         </th>
  47.         <th>
  48.             Cupo femenino
  49.         </th>
  50.         <th>
  51.             % adicional cupo femenino
  52.         </th>
  53.     </tr>
  54.     {% if elementosUsados is defined %}
  55.         {% for baseId, valoresBase in elementosUsados %}
  56.             {% include 'ProcesoReclutamiento\\tr_baseMovilizacion.html.twig' with { 'base': valoresBase['base'].base, 'centros': lugares, 'centrosUsados': valoresBase['centros'], 'lugaresEnProceso': lugaresEnProceso, 'baseUsada': valoresBase['base'], 'canDelete': valoresBase['canDelete'] } %}
  57.             {% for valoresCentro in valoresBase['centros'] %}
  58.                 {% 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'] } %}
  59.             {% endfor %}
  60.         {% endfor %}
  61.     {% endif %}
  62. </table>