Files
quality_recticel/py_app/app/templates/main_page_etichete.html
2025-04-30 16:22:07 +03:00

34 lines
1.2 KiB
HTML

{% extends "base.html" %}
{% block title %}Modul Etichete{% endblock %}
{% block content %}
<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 %}