diff options
Diffstat (limited to 'qc_app/templates/parse_results.html')
-rw-r--r-- | qc_app/templates/parse_results.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/qc_app/templates/parse_results.html b/qc_app/templates/parse_results.html index 358c5e8..1a224e8 100644 --- a/qc_app/templates/parse_results.html +++ b/qc_app/templates/parse_results.html @@ -12,4 +12,11 @@ {{errors_display(errors, "No errors found in the file", "We found the following errors")}} +{%if errors | length == 0 %} +<form method="post" action="{{url_for('dbinsert.select_dataset')}}"> + <input type="hidden" name="job_id" value="{{job_id}}" /> + <input type="submit" value="update database" class="btn btn-main" /> +</form> +{%endif%} + {%endblock%} |