Added Pages

This commit is contained in:
2025-04-30 16:22:07 +03:00
parent 56f3f8805d
commit b2912064b5
9 changed files with 339 additions and 43 deletions

View File

@@ -6,5 +6,29 @@
<div class="etichete-container">
<h1>Modul Etichete</h1>
<p>Aceasta este pagina pentru gestionarea etichetelor.</p>
<!-- Row of evenly distributed cards -->
<div class="dashboard-container">
<!-- Card 1: Upload Data -->
<div class="dashboard-card">
<h3>Upload Data</h3>
<p>Upload data into the database for label management.</p>
<a href="{{ url_for('main.upload_data') }}" class="btn">Go to Upload Data</a>
</div>
<!-- Card 2: Launch Print Module -->
<div class="dashboard-card">
<h3>Launch Print Module</h3>
<p>Access the print module to print labels.</p>
<a href="{{ url_for('main.print_module') }}" class="btn">Launch Print Module</a>
</div>
<!-- Card 3: Manage Label Templates -->
<div class="dashboard-card">
<h3>Manage Label Templates</h3>
<p>Manage and configure label templates.</p>
<a href="{{ url_for('main.label_templates') }}" class="btn">Manage Templates</a>
</div>
</div>
</div>
{% endblock %}