22 lines
432 B
HTML
22 lines
432 B
HTML
|
{% extends "base.html" %}
|
||
|
{% block title %}DONE{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<div class="container">
|
||
|
<div class="card-deck mb-3 text-center"></div>
|
||
|
<h3>Control de calidad aplicado. </h3>
|
||
|
|
||
|
<!-- Printing errors -->
|
||
|
<table class="table">
|
||
|
{% for error in error_list %}
|
||
|
<tr>
|
||
|
<td>{{ error[0] }}</td>
|
||
|
<td>{{ error[1] }}</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</table>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
{% endblock %}
|