Antes de actualizar
This commit is contained in:
40
Templates/Sistemas/Xclientes/listaBitacora.html
Normal file
40
Templates/Sistemas/Xclientes/listaBitacora.html
Normal file
@@ -0,0 +1,40 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
|
||||
{% block title %}
|
||||
Sistemas Errores Bitacora Lista
|
||||
{% endblock title %}
|
||||
|
||||
|
||||
|
||||
{% block content %}
|
||||
<table class="table">
|
||||
<thead class="thead-dark">
|
||||
<tr>
|
||||
<th scope="col">Error</th>
|
||||
<th scope="col">Vista</th>
|
||||
<th scope="col">--</th>
|
||||
<th scope="col">--</th>
|
||||
<th>--</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
{% for row in object_list %}
|
||||
<tr>
|
||||
<th scope="row">{{row.message}}</th>
|
||||
<td>{{row.view}}</td>
|
||||
<td>--</td>
|
||||
<td>--</td>
|
||||
|
||||
{% comment %}
|
||||
|
||||
<td><a href="{% url 'detail_sistemas' row.id %}" class="btn btn-info">Detalles</a></td>
|
||||
{% endcomment %}
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
{% endblock content %}
|
||||
|
||||
Reference in New Issue
Block a user