Skip to content

Commit

Permalink
#29 ajustes formatos tablas
Browse files Browse the repository at this point in the history
  • Loading branch information
sergioviera committed Feb 27, 2020
1 parent 84e305e commit 5f0e282
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions protected/views/reportes/generalesPorEncuestas.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,21 +78,26 @@
<td class="text-right"><?php echo $generales['respuestasPorCarrera'][$carreraId]['Auxiliar'] ?></td>
<td class="text-right"><?php echo $generales['respuestasPorCarrera'][$carreraId]['Titular']+$generales['respuestasPorCarrera'][$carreraId]['Auxiliar'] ?></td>
</tr>
</tbody>
<tfoot>
<tr>
<td>TOTAL</td>
<th scope="row" class="text-right"><?php echo $totalTitular ?></th>
<th scope="row" class="text-right"><?php echo $totalAuxiliar ?></th>
<th scope="row" class="text-right"><?php echo $totalTitular + $totalAuxiliar ?></th>
</tr>
</tbody>
</tfoot>
</table>
</div>
<div class="col-md-6">
<table class="table">
<table class="table table-bordered">
<thead>
<tr>
<td></td>
<td class="text-right">Encuestas Respondidas</td>
<th></th>
<th class="text-right">Encuestas Respondidas</th>
</tr>
</thead>
<tbody>
<tr>
<td>Lab. El&eacute;ctrica</td>
<td class="text-right"><?php echo $generales["Laboratorio"]["Laboratorio_de_Electrica"]?></td>
Expand All @@ -113,10 +118,13 @@
<td>Lab. de F&iacute;sica</td>
<td class="text-right"><?php echo $generales["Laboratorio"]["Laboratorio_de_Física"]?></td>
</tr>
</tbody>
<tfoot>
<tr>
<td>TOTAL</td>
<th scope="row" class="text-right"><?php echo $generales["Laboratorio"]["Laboratorio_de_Electrica"] + $generales["Laboratorio"]["Laboratorio_de_Mecánica"] + $generales["Laboratorio"]["Laboratorio_de_Química"] + $generales["Laboratorio"]["Laboratorio_de_Sistemas_"] + $generales["Laboratorio"]["Laboratorio_de_Física"]?></th>
</tr>
</tfoot>
</table>
</div>
<div class="col-md-6" style="border: solid 1px #eee">
Expand Down

0 comments on commit 5f0e282

Please sign in to comment.