fixes few mistakes in html code. fixes html table columns

This commit is contained in:
Michael Beck
2025-02-05 21:03:51 +01:00
parent 43c95abbe8
commit 4c92ce9ceb

View File

@@ -1,7 +1,7 @@
{% include "header.html" %} {% include "header.html" %}
<main> <main>
<section id="scrapingFormContainer" class="container-fluid d-flex justify-content-center"> <section class="container-fluid d-flex justify-content-center">
<div class="container-md my-5 mx-2 shadow-lg p-4 "> <div class="container-md my-5 mx-2 shadow-lg p-4 ">
<div class="container-sm"> <div class="container-sm">
<div class="row"> <div class="row">
@@ -19,7 +19,7 @@
<table id="dataFilesTable" class="table table-striped table-bordered table-hover"> <table id="dataFilesTable" class="table table-striped table-bordered table-hover">
<thead> <thead>
<tr> <tr>
<th><input type="checkbox" id="checkAllData" onclick="checkAllCheckboxes('dataFilesTable', 'checkAllData')"> Select</th> <th width="2%"><input type="checkbox" id="checkAllData" onclick="checkAllCheckboxes('dataFilesTable', 'checkAllData')"></th>
<th onclick="sortTable(1, 'dataFilesTable')">File Name</th> <th onclick="sortTable(1, 'dataFilesTable')">File Name</th>
<th onclick="sortTable(2, 'dataFilesTable')">Last Modified</th> <th onclick="sortTable(2, 'dataFilesTable')">Last Modified</th>
<th onclick="sortTable(3, 'dataFilesTable')">Created</th> <th onclick="sortTable(3, 'dataFilesTable')">Created</th>
@@ -42,6 +42,10 @@
{% endfor %} {% endfor %}
</tbody> </tbody>
</table> </table>
</div>
</section>
<section class="container-fluid d-flex justify-content-center">
<div class="container-md my-5 mx-2 shadow-lg p-4 ">
<div class="container-sm"> <div class="container-sm">
<div class="row"> <div class="row">
<div class="col"> <div class="col">
@@ -53,10 +57,12 @@
<button class="btn btn-success" onclick="downloadSelectedFiles()">Download Selected Files</button> <button class="btn btn-success" onclick="downloadSelectedFiles()">Download Selected Files</button>
</div> </div>
</div> </div>
</div> <table id="logFilesTable" class="table table-striped table-bordered table-hover"> </div>
</div>
<table id="logFilesTable" class="table table-striped table-bordered table-hover">
<thead> <thead>
<tr> <tr>
<th><input type="checkbox" id="checkAllLog" onclick="checkAllCheckboxes('logFilesTable', 'checkAllLog')"> Select</th> <th width="2%"><input type="checkbox" id="checkAllLog" onclick="checkAllCheckboxes('logFilesTable', 'checkAllLog')"></th>
<th onclick="sortTable(1, 'logFilesTable')">File Name</th> <th onclick="sortTable(1, 'logFilesTable')">File Name</th>
<th onclick="sortTable(2, 'logFilesTable')">Last Modified</th> <th onclick="sortTable(2, 'logFilesTable')">Last Modified</th>
<th onclick="sortTable(3, 'logFilesTable')">Created</th> <th onclick="sortTable(3, 'logFilesTable')">Created</th>