created quality page
This commit is contained in:
@@ -1,6 +1,36 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}Quality Module{% endblock %}
|
||||
{% block content %}
|
||||
<h2>Quality Module</h2>
|
||||
<p>Welcome to the Quality Module.</p>
|
||||
<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 %}
|
||||
Reference in New Issue
Block a user