updated to scan module
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
<div class="dashboard-card">
|
||||
<h3>Access Scanning Module</h3>
|
||||
<p>Final scanning module for production orders</p>
|
||||
<a href="{{ url_for('main.scan') }}" class="btn">Launch Scanning Module</a>
|
||||
<a href="{{ url_for('main.main_scan') }}" class="btn">Launch Scanning Module</a>
|
||||
</div>
|
||||
|
||||
<div class="dashboard-card">
|
||||
|
||||
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 %}
|
||||
@@ -1,5 +1,8 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}Scan Module{% endblock %}
|
||||
{% block head %}
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/scan.css') }}">
|
||||
{% endblock %}
|
||||
{% block content %}
|
||||
<div class="scan-container">
|
||||
<!-- Input Form Card -->
|
||||
|
||||
Reference in New Issue
Block a user