Antes de actualizar

This commit is contained in:
fjrodriguez
2023-02-24 12:26:21 -06:00
parent 4b5b044de9
commit 4983cdc8fa
8 changed files with 108 additions and 21 deletions

View 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 %}

View File

@@ -65,7 +65,9 @@
<div class="dropdown-divider"></div>
{% if request.user.is_superuser %}
<a class="dropdown-item" href="{% url 'ErroresTimbresList' %}">Lista Errores</a>
<a class="dropdown-item" href="{% url 'ErroresTimbresList' %}">Lista Errores Timbres</a>
<a class="dropdown-item" href="{% url 'lista_sistmas_bitacora' %}">Lista Errores Bitacora</a>
<div class="dropdown-divider"></div>
{% endif %}