diff options
author | Frederick Muriuki Muriithi | 2024-06-12 16:38:54 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-06-13 12:01:14 -0500 |
commit | f726c71bf1636a838f45363d1613763a2926e34f (patch) | |
tree | 8b5e0323106026abafa5cc0385a32df9df62f9e5 /qc_app/templates/job_progress.html | |
parent | 05402410638fc7dd678a6289ccd2a9ce11acc5e7 (diff) | |
download | gn-uploader-f726c71bf1636a838f45363d1613763a2926e34f.tar.gz |
Update html templates to use bootstrap for styling
Diffstat (limited to 'qc_app/templates/job_progress.html')
-rw-r--r-- | qc_app/templates/job_progress.html | 29 |
1 files changed, 19 insertions, 10 deletions
diff --git a/qc_app/templates/job_progress.html b/qc_app/templates/job_progress.html index 1b08814..1af0763 100644 --- a/qc_app/templates/job_progress.html +++ b/qc_app/templates/job_progress.html @@ -10,21 +10,30 @@ {%block contents%} <h1 class="heading">{{job_name}}</h2> -<label for="job_status">status:</label> -<span>{{job_status}}: {{message}}</span><br /> - -<label for="job_{{job_id}}">parsing: </label> -<progress id="job_{{job_id}}" value="{{progress/100}}">{{progress}}</progress> -<span>{{"%.2f" | format(progress)}}%</span> - -<div> +<div class="row"> <form action="{{url_for('parse.abort')}}" method="POST"> + <legend class="heading">Status</legend> + <div class="form-group"> + <label for="job_status" class="form-label">status:</label> + <span class="form-text">{{job_status}}: {{message}}</span><br /> + </div> + + <div class="form-group"> + <label for="job_{{job_id}}" class="form-label">parsing: </label> + <progress id="job_{{job_id}}" + value="{{progress/100}}" + class="form-control"> + {{progress}}</progress> + <span class="form-text text-muted">{{"%.2f" | format(progress)}}%</span> + </div> + <input type="hidden" name="job_id" value="{{job_id}}" /> - <input type="submit" value="Abort" class="btn btn-danger" /> + + <button type="submit" class="btn btn-danger">Abort</button> </form> </div> -<div> +<div class="row"> {{errors_display(errors, "No errors found so far", "We have found the following errors so far", False)}} </div> |