updated to scan module

This commit is contained in:
2025-10-09 01:10:05 +03:00
parent b8e85180c7
commit e257f6be18
7 changed files with 89 additions and 32 deletions

View File

@@ -0,0 +1,25 @@
{% extends "base.html" %}
{% block title %}Main Scanning Module{% endblock %}
{% block content %}
<div class="etichete-container">
<h1>Main Scanning Module</h1>
<p>This is the main page for accessing scanning features.</p>
<div class="dashboard-container">
<!-- Card 1: Finish goods scanning -->
<div class="dashboard-card">
<h3>Finish goods scanning</h3>
<p>Access the scanning module for production orders.</p>
<a href="{{ url_for('main.scan') }}" class="btn">Finish goods scanning</a>
</div>
<!-- Card 2: View Scan History -->
<div class="dashboard-card">
<h3>View Scan History</h3>
<p>Review previous scan records and results.</p>
<a href="#" class="btn" disabled>Coming Soon</a>
</div>
</div>
</div>
{% endblock %}