CCG_mirri_tools/web_tools/templates/validation_html_output.html

87 lines
4.3 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base.html" %}
{% load web_tool_utils %}
{% block title %} MIRRI Validation tool {% endblock title %}
{% block navigator%} MIRRI Validation tool{% endblock navigator%}
{% block page_title %} MIRRI v20200601 specifications validator {% endblock page_title %}
{% block content %}
<div>
{% if not validation_done%}
<div class="info">
<p>Please refer to this instructions to compile your excel file:</p>
<ul>
<li>
<a href="https://synology.mirri.org:5019/d/f/585510897426937562" target="_blank" >HowToCompileTheSheets_v20200601.pdf</a>
</li>
<li>
<a href="https://synology.mirri.org:5019/d/f/585510897965905633" target="_blank">RecommendationsToCollections_v20200601.pdf</a>
</li>
</ul>
<p>You can also contact the MIRRI ICT by email using <a href="mailto:ict-support@mirri.org">ICT Support</a></p>
<br />
</div>
{% endif%}
{% if not validation_done %}
<div>
<form action="" enctype="multipart/form-data" method="post">
{% csrf_token %}
<ul>
<li>{{ form.file.errors }}<label for="name"></label>{{ form.file }}</li>
<li>
{{ form.file.errors }}{{ form.do_upload }}
<label for="name">Check it if you want to upload the file if it complies with the specifications</label>
</li>
</ul>
<input type="submit" value="Validate" />
</form>
</div>
{% endif%}
{% if validation_done %}
{% if valid %}
<h3> Congratulations, Your file <span style='font-weigth: bold'>{{fname}}</span> <span class="strong">complies</span> the mirri specs </h3>
{% if uploaded %}
<p>Your file has been uploaded to MIRRI Storage Correctly. Once an Admin notices it, data will be uploaded into MIRRI-IS</p>
{% endif %}
{% else %}
<p>Dear Curator of Culture Collection {{culture_collection}}:</p>
<p>The ExcelFile <span class="strong">{{fname}}</span> youve provided on {{file_date}} with your collection Strains Data contains errors/inconsistencies/missing data.</p>
<p>Please, see below the list of detected errors/missing data, for you to proceed with the appropriated correction/completion.</p>
<p>If you need help, please refer to the instructions contained in <a href="https://synology.mirri.org:5019/d/f/585510897426937562" target="_blank" >HowToCompileTheSheets_v20200601.pdf</a> and <a href="https://synology.mirri.org:5019/d/f/585510897965905633" target="_blank">RecommendationsToCollections_v20200601.pdf</a>.
<p>You can also contact the MIRRI ICT by email using: <a href="mailto:ict-support@mirri.org">ICT Support</a></p>
<p>You can download the report <a href='{{error_pdf_url}}' target='_blank'>Here</a></p>
<br />
<h4>Check the error and fix them before submitting them again:</h4>
{% for entity, errors in all_errors.items %}
<div style='margin-top:40px;'>
<h3>{{entity}}</h3>
<table class='error_table' style='width:100%;margin-bottom:20px;'>
<tr style='border-bottom: 1px solid black;'>
<th>Identifier</th>
<th>Error Message</th>
<th>Error Code</th>
</tr>
{% for error in errors%}
<tr style='border-bottom: 1px dotted grey;'>
<td style='width:6em'>{% if error.pk is None %} - {% else %} {{error.pk}} {% endif%} </td>
<td>{{error.message|add_span_tag}}</td>
<td style='width:6em'>{{error.code}}</td>
</tr>
{% endfor %}
</table>
</div>
{% endfor %}
{% if total_errors > error_limited_to %}
<h4 style='margin-top: 40px'>You have more than {{error_limited_to}} errors. They have been hidden.</h4>
{% endif %}
<button onclick="javascript:window.history.back();">Try again</button>
{% endif %}
{% endif %}
</div>
{% endblock content %}