36 lines
1.4 KiB
HTML
36 lines
1.4 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}Quality Module{% endblock %}
|
|
{% block content %}
|
|
<div class="scan-container">
|
|
<!-- Reports Card -->
|
|
<div class="card scan-form-card">
|
|
<h3>Rapoarte</h3>
|
|
<div class="form-centered">
|
|
<button class="btn report-btn" data-report="1">Report 1</button>
|
|
<button class="btn report-btn" data-report="2">Report 2</button>
|
|
<button class="btn report-btn" data-report="3">Report 3</button>
|
|
<button class="btn report-btn" data-report="4">Report 4</button>
|
|
<button class="btn report-btn" data-report="5">Report 5</button>
|
|
</div>
|
|
<div class="form-centered">
|
|
<button class="btn export-btn" id="export-csv">Export the current report as CSV</button>
|
|
<button class="btn export-btn" id="export-pdf">Export the current report as PDF</button>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Data Display Card -->
|
|
<div class="card scan-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>
|
|
</div>
|
|
{% endblock %} |