diff options
author | Frederick Muriuki Muriithi | 2022-12-23 08:47:44 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-12-23 08:47:44 +0300 |
commit | 3fb8a4de897eabd3e85520358619af7abcbd7664 (patch) | |
tree | 2e11d672efdbfd90a3ca7909706b9f4dad9d2ad2 /qc_app/templates/index.html | |
parent | 8284ebe14f60cd6c2858b802839392c0c6da0edd (diff) | |
download | gn-uploader-3fb8a4de897eabd3e85520358619af7abcbd7664.tar.gz |
Help: Provide some help content for end user
Diffstat (limited to 'qc_app/templates/index.html')
-rw-r--r-- | qc_app/templates/index.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/qc_app/templates/index.html b/qc_app/templates/index.html index 9111af0..9ee3af6 100644 --- a/qc_app/templates/index.html +++ b/qc_app/templates/index.html @@ -5,8 +5,28 @@ {%block contents%} <h1 class="heading">upload file</h1> +<div id="explainer"> + <p>This application assumes that you are familiar with the basics of data + verification formats and uploading procedures. If you haven't done so please + go to this page to learn the requirements for file formats and helpful + suggestions to enter your data in a fast and easy way.</p> + + <ol> + <li><strong>PLEASE REVIEW YOUR DATA.</strong>Make sure your data complies + with our system requirements. ( + <a href="{{url_for('entry.data_review')}}#data-concerns" + title="Details for the data expectations.">Help</a> + )</li> + <li><strong>UPLOAD YOUR DATA FOR DATA VERIFICATION.</strong> We accept + <strong>.csv</strong>, <strong>.txt</strong> and <strong>.zip</strong> + files (<a href="{{url_for('entry.data_review')}}#file-types" + title="Details for the data expectations.">Help</a>)</li> + </ol> +</div> + <form action="{{url_for('entry.upload_file')}}" method="POST" enctype="multipart/form-data"> + <legend class="heading">upload file</legend> {%with messages = get_flashed_messages(with_categories=True) %} {%if messages %} <div class="alerts"> |