updated to scan module
This commit is contained in:
25
py_app/app/templates/main_page_scan.html
Normal file
25
py_app/app/templates/main_page_scan.html
Normal 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 %}
|
||||
Reference in New Issue
Block a user