Commit d8430a1227a7887147884e2206602322ad30ec17

Authored by Bruno Noronha
1 parent b8d88575
Exists in master

Relatório de usuário logado

src/Cacic/CommonBundle/Resources/views/Log/resultadoBuscar.html.twig 0 → 100644
... ... @@ -0,0 +1,41 @@
  1 +<div class="row-fluid">
  2 + <div class="span12">
  3 + <div class="box grad_colour_black">
  4 + <h2 class="box_head round_top"><i class="icon-list"></i> {{'Resultado da pesquisa' |trans }}</h2>
  5 + <div class="block box_content round_bottom padding_10">
  6 +
  7 + <table class="table table-striped table-bordered">
  8 + <thead>
  9 + <tr>
  10 + <th width="30%" style="text-align: center">{{ "Nome da Máquina"|trans }}</th>
  11 + <th width="30%" style="text-align: center">{{ "Endereço IP"|trans }}</th>
  12 + <th width="25%" style="text-align: center">{{ "Data"|trans }}</th>
  13 + <th width="35%" style="text-align: center">{{ "Usuário Logado"|trans }}</th>
  14 + <th width="5%"></th>
  15 + </tr>
  16 + </thead>
  17 +
  18 + <tbody>
  19 +
  20 + {% for computador in computadores %}
  21 +
  22 + <tr>
  23 + <td style="text-align: center">{{ computador['nmComputador'] }}</td>
  24 + <td style="text-align: center">{{ computador['teIpComputador'] }}</td>
  25 + <td style="text-align: center">{{'Data ' |trans }} {{ computador['data'] }}</td>
  26 + <td style="text-align: center">{{ computador['usuario'] }}</td>
  27 + </tr>
  28 +
  29 + {% else %}
  30 + <tr>
  31 + <td style="text-align: center;" colspan="5"><b>{{ "NENHUM REGISTRO ENCONTRADO!"|trans }}</b></td>
  32 + </tr>
  33 + {% endfor %}
  34 +
  35 + </tbody>
  36 + </table>
  37 +
  38 + </div> <!-- /block -->
  39 + </div> <!-- /box -->
  40 + </div> <!-- /span -->
  41 +</div> <!-- /row -->
0 42 \ No newline at end of file
... ...