Commit 7fbeba6d0d549a41f206cd836bd74a072f0b7863
1 parent
966bfd1614
Exists in
master
coloca en orden los escalafones obtenidos al mostrarselos al coordinador
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
app/Resources/views/cea/ascenso_mostar.html.twig
... | ... | @@ -140,12 +140,12 @@ |
140 | 140 | |
141 | 141 | {% if escalas is not null %} |
142 | 142 | <div class="form-group"> |
143 | - <label for="Escalafones">{{ cantidadJurado }}Escalafones Obtenidos:</label> | |
144 | - <table class="table table-striped table-bordered"> | |
143 | + <label for="Escalafones"><strong>Escalafones Obtenidos:</strong></label> | |
144 | + <table class="table table-striped table-bordered table-condensed"> | |
145 | 145 | <th>Escalafón</th> |
146 | 146 | <th>Fecha</th> |
147 | 147 | <th>Tipo</th> |
148 | - {% for escala in escalas %} | |
148 | + {% for escala in escalas | sort %} | |
149 | 149 | |
150 | 150 | <tr> |
151 | 151 | <td>{{escala.idEscala }}</td> | ... | ... |