saved new files

This commit is contained in:
2025-09-10 21:50:08 +03:00
parent 2b84b13524
commit bb3352ea4a
8 changed files with 71 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
{% extends "base.html" %}
{% block title %}Warehouse Module{% endblock %}
{% block content %}
<div class="warehouse-container">
<h1>Warehouse Module</h1>
<p>This is the page for managing warehouse operations.</p>
<!-- Row of evenly distributed cards -->
<div class="dashboard-container">
<!-- Card 1: Store Articles -->
<div class="dashboard-card">
<h3>Store Articles</h3>
<p>Add or update articles in the warehouse inventory.</p>
<a href="{{ url_for('main.store_articles') }}" class="btn">Go to Store Articles</a>
</div>
<!-- Card 2: Create Warehouse Locations -->
<div class="dashboard-card">
<h3>Create Warehouse Locations</h3>
<p>Define and manage storage locations in the warehouse.</p>
<a href="{{ url_for('main.create_locations') }}" class="btn">Go to Locations</a>
</div>
<!-- Card 3: Warehouse Reports -->
<div class="dashboard-card">
<h3>Warehouse Reports</h3>
<p>View and export warehouse activity and inventory reports.</p>
<a href="{{ url_for('main.warehouse_reports') }}" class="btn">Go to Reports</a>
</div>
</div>
</div>
{% endblock %}

View File

@@ -0,0 +1,6 @@
{% extends "base.html" %}
{% block title %}Store Articles{% endblock %}
{% block content %}
<h2>Store Articles</h2>
<p>This is the Store Articles page for the warehouse module.</p>
{% endblock %}

View File

@@ -0,0 +1,6 @@
{% extends "base.html" %}
{% block title %}Warehouse Reports{% endblock %}
{% block content %}
<h2>Warehouse Reports</h2>
<p>This is the Warehouse Reports page for the warehouse module.</p>
{% endblock %}