<table id="tbl-Administracion-Log-{{ hash_vista }}" class="table table-bordered table-hover table-responsive">
<thead>
<tr>
<th width="1%">NOMBRE USUARIO</th>
<th width="1%">COMPONENTE</th>
<th width="1%">CONTROLADOR</th>
<th width="1%">OPERACION</th>
<th width="1%">RESPUESTA</th>
<th width="1%">MENSAJE</th>
<th width="1%">FECHA</th>
</tr>
</thead>
<tbody>
{% if Logs %}
{% for Log in Logs %}
<tr>
<td>{{ Log.logUSUARIONOMBRE }}</td>
<td>{{ Log.logCOMPONENTE }}</td>
<td>{{ Log.logCONTROLADOR }}</td>
<td>{{ Log.LogOPERACION }}</td>
<td>{{ Log.logRESPUESTA }}</td>
<td class="titulo-flotante" title="{{ Log.logMENSAJE |striptags }}" >
{{ Log.logMENSAJE|striptags[0:25] }}...
</td>
<td>{{ Log.logFECHA }}</td>
</tr>
{% endfor %}
{% endif %}
</tbody>
</table>
<script type="text/javascript" >
$(document).ready(function () {
$('#tbl-Administracion-Log-{{ hash_vista }}').DataTable( {
"ordering": false
} );
});
</script>