first commit

This commit is contained in:
2020-07-13 01:07:56 +02:00
commit 6cdf4d5197
28 changed files with 2124 additions and 0 deletions

22
templates/regenerate.html Normal file
View File

@ -0,0 +1,22 @@
{% 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 %}