diff options
author | Frederick Muriuki Muriithi | 2024-06-14 10:31:39 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-06-14 10:43:57 -0500 |
commit | 0783b155002da7034d68ead6c62ccdb0670b37b7 (patch) | |
tree | 6353962d22dbb05d63b085c84d323c14b200452d /qc_app/templates/select_species.html | |
parent | 6043dabe8f1351f567843a6c0509958d6d56870a (diff) | |
download | gn-uploader-0783b155002da7034d68ead6c62ccdb0670b37b7.tar.gz |
Use bootstrap for displaying progress widget
This commit converts the progress indication widget into a bootstrap
modal dialog, and updates the javascript to prevent the code from
interacting with bootstrap in unpredictable ways.
Diffstat (limited to 'qc_app/templates/select_species.html')
-rw-r--r-- | qc_app/templates/select_species.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/qc_app/templates/select_species.html b/qc_app/templates/select_species.html index 35850de..b813248 100644 --- a/qc_app/templates/select_species.html +++ b/qc_app/templates/select_species.html @@ -57,7 +57,10 @@ class="form-control"/> </div> - <button type="submit" class="btn btn-primary">upload file</button> + <button type="submit" + class="btn btn-primary" + data-toggle="modal" + data-target="#upload-progress-indicator">upload file</button> </form> </div> {%endblock%} |