32 lines
848 B
HTML
32 lines
848 B
HTML
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
<div class="table-responsive-sm">
|
|
<table class="table">
|
|
<thead class="thead-dark">
|
|
<tr>
|
|
<th scope="col">UUID</th>
|
|
<th scope="col">Error</th>
|
|
<th scope="col">RCF</th>
|
|
<th scope="col">Folio</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for errTimbre in object_list %}
|
|
<tr class="{% if errTimbre.modo|lower == 'prueba' %}table-danger{% endif %}">
|
|
<th scope="row">{{errTimbre.uuid}}</th>
|
|
<td>{{errTimbre.description}}</td>
|
|
<td>{{errTimbre.rfcc}}</td>
|
|
<td>{{errTimbre.folio}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock content %}
|
|
|