Commit 3e4325e198b315fcec0b6ee51e7058a5daf1d494
1 parent
59ba7ff6d8
Exists in
master
acomodado ciertas cosas en el memo del ascenso
Showing
1 changed file
with
11 additions
and
7 deletions
Show diff stats
app/Resources/views/memorando/ascenso.html.twig
... | ... | @@ -121,7 +121,7 @@ |
121 | 121 | </tr> |
122 | 122 | <tr> |
123 | 123 | <td colspan="2">Área Académica:</td> |
124 | - <td colspan="3">{{ adscripcion.idLineaInvestigacion.idAreaInvestigacion }}</td> | |
124 | + <td colspan="3"><p style="font-size:9px;" >{{ adscripcion.idLineaInvestigacion.idAreaInvestigacion }}</p></td> | |
125 | 125 | </tr> |
126 | 126 | <tr> |
127 | 127 | <td colspan="2">Eje Geopolítico:</td> |
... | ... | @@ -160,15 +160,19 @@ |
160 | 160 | {{ ascenso.idRolInstitucion.idRol.idPersona }} |
161 | 161 | {{ ultimaEscala.idEscala }} |
162 | 162 | </td> |
163 | - <td class="col-md-2">{{ ascenso.tituloTrabajo }}</td> | |
163 | + <td class="col-md-2"> | |
164 | + <strong>Trabajo tipo {{ ascenso.tipoTrabajoInvestigacion }}:</strong><br> | |
165 | + {{ ascenso.tituloTrabajo }} | |
166 | + {% if ascenso.pertinencia %} | |
167 | + <br><br> Se anexa informe de pertinencia | |
168 | + {% endif %} | |
169 | + </td> | |
164 | 170 | <td colspan="2" class="col-md-2"> |
165 | - {% set break = false %} | |
166 | - <ul> | |
171 | + {% set break = false %} | |
167 | 172 | {% for tutores in ascenso.tutoresAscenso if not break %} |
168 | 173 | {% if loop.index == 4 %} {% set break = true %} {% endif %} |
169 | - <li>{{ tutores }}</li> | |
170 | - {% endfor %} | |
171 | - </ul> | |
174 | + <p style="font-size:9px;">{{ tutores }}</p><br> | |
175 | + {% endfor %} | |
172 | 176 | </td> |
173 | 177 | <td> |
174 | 178 | <ul> | ... | ... |