Commit 090360d57a2e8e8214cfa1ce7dc140721d2ece20

Authored by Bruno Menezes
1 parent f9567c14
Exists in master and in 1 other branch 3.1

Acrescentar total de máquinas no final dos relatório

src/Cacic/RelatorioBundle/Resources/views/Faturamento/faturamentoResultado.html.twig
... ... @@ -16,19 +16,19 @@
16 16 <form id="faturamento" class="form-horizontal" method="post" >
17 17  
18 18 <table class="table table-striped table-bordered">
19   - <thead>
20   - <tr>
21   - <th width="10%" style="text-align: center"></th>
22   - <th width="20%">{{ "Local"|trans }}</th>
23   - <th width="30%" style="text-align: center">{{ "Rede"|trans }}</th>
24   - <th width="20%" style="text-align: center">{{ "Endereço IP"|trans }}</th>
25   - <th width="20%" style="text-align: center">{{ "Estações"|trans }}</th>
26   - <th style="text-align: center">
27   -
28   - </th>
29   - </tr>
  19 +
  20 + <thead>
  21 + <tr>
  22 + <th width="10%" style="text-align: center"></th>
  23 + <th width="20%">{{ "Local"|trans }}</th>
  24 + <th width="30%" style="text-align: center">{{ "Rede"|trans }}</th>
  25 + <th width="20%" style="text-align: center">{{ "Endereço IP"|trans }}</th>
  26 + <th width="20%" style="text-align: center">{{ "Estações"|trans }}</th>
  27 + <th style="text-align: center"></th>
  28 + </tr>
30 29 </thead>
31   - <tbody>
  30 +
  31 + <tbody>
32 32 {% for log in logs %}
33 33  
34 34 <tr>
... ... @@ -54,12 +54,19 @@
54 54 {% endfor %}
55 55  
56 56 </tbody>
57   - </table>
  57 + </table>
  58 + </form>
58 59  
  60 + <table class="table table-striped table-bordered">
  61 + <thead>
  62 + <tr>
  63 + <th width="77%" style="text-align: left">{{ "Total de Estações"|trans }}</th>
  64 + <th width="23%" style="text-align: center">{{ totalnumcomp }}</th>
  65 + </tr>
  66 + </thead>
  67 + </table>
59 68  
60   - </form>
61   -
62   - </div> <!-- /block -->
  69 + </div> <!-- /block -->
63 70 </div> <!-- /box -->
64 71 </div> <!-- /span -->
65 72 </div> <!-- /row -->
... ...