updated export to csv file

This commit is contained in:
2025-04-25 14:41:10 +03:00
parent a8f07497a0
commit e6878495a1
2 changed files with 37 additions and 12 deletions

View File

@@ -29,7 +29,7 @@
<label class="export-description">Export current report as:</label>
<div class="button-row">
<button class="btn export-btn" id="export-csv">Export CSV</button>
<button class="btn export-btn" id="export-pdf">Export PDF</button>
<!-- <button class="btn export-btn" id="export-excel">Export excell</button> -->
</div>
</div>
</div>
@@ -37,16 +37,19 @@
<!-- Data Display Card -->
<div class="card report-table-card">
<h3 id="report-title">No data to display, please select a report.</h3>
<table class="scan-table" id="report-table">
<thead>
<tr>
<!-- Table headers will be dynamically populated -->
</tr>
</thead>
<tbody>
<!-- Table data will be dynamically populated -->
</tbody>
</table>
<div class="report-table-container">
<table class="scan-table" id="report-table">
<thead>
<tr>
<!-- Table headers will be dynamically populated -->
</tr>
</thead>
<tbody>
<!-- Table data will be dynamically populated -->
</tbody>
</table>
</div>
</div>
</div>
{% endblock %}
{% endblock %}