src/templates/ReclutaProceso/show_pdf_noidoneo.html.twig line 1

Open in your IDE?
  1. {% extends "print_base.html.twig" %}
  2. {% block title %}
  3.     <title>Ficha de Inscripción</title>
  4. {% endblock title %}
  5. {% block body %}
  6.     <div class="center pdftitlefont" style="font-weight: bold;">
  7.         COMANDO CONJUNTO DE LAS FF.AA. <br>
  8.         DIRECCIÓN DE MOVILIZACIÓN DEL C.C. DE LAS FF.AA.<br>
  9.         CERTIFICADO
  10.     </div>
  11.     <br>
  12.     <br>
  13.     <div class="panel-body" style="border-width: 1px;">
  14.         <div class="pdffont" style="text-align: center; font-weight: bold;">
  15.             <br>
  16.                EL COMANDANTE DE LA BASE DE MOVILIZACIÓN {{entity.baseMovilizacion|upper }} Y EL JEFE DEL CENTRO DE MOVILIZACIÓN {{ entity.centroMovilizacion|upper }}
  17.                 <br><br><br><br><br>
  18.                 CERTIFICA
  19.                 <br><br>
  20.         </div>
  21.         <div class="pdffont" style="text-align: justify">
  22.             <br>
  23.             Que el Sr/rta <b>{{ entity.recluta.nombreCompleto|upper }}</b> portador de la cédula
  24.             de ciudadanía No <b>{{ entity.recluta.identificacion }}</b> se presentó al acuartelamiento del 
  25.             {{ entity.fechaResultado | date('d-m-Y') }} y fue considerado <b>NO IDONEO</b>.
  26.             <br><br>
  27.             El interesado podrá utilizar este documento militar en lo que le creyere necesario.
  28.         </div>
  29.         <div class="pdffont" style="text-align: right">
  30.             <br>
  31.             {{ entity.centroMovilizacion.localizacion.dominioPadre |upper }},  {{ date() | date('d-m-Y')  }}.
  32.             <br>
  33.         </div>
  34.         <div class="pdffont" style="text-align: left">
  35.             <br><br><br><br><br><br>
  36.             {% if entity.centroMovilizacion.jefe %}
  37.                 {{ entity.centroMovilizacion.jefe|upper }} <br>
  38.                 {% if entity.centroMovilizacion.jefe.grado %}
  39.                     {{ entity.centroMovilizacion.jefe.grado|upper }} <br>
  40.                 {% endif %}
  41.             {% endif %}
  42.             JEFE DEL CENTRO DE MOVILIZACIÓN {{ entity.centroMovilizacion|upper }}.
  43.             <br>
  44.         </div>
  45.     </div>
  46. {% endblock body %}