31 lines
1.3 KiB
HTML
31 lines
1.3 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Admin Dashboard - ScanLook{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="dashboard-container">
|
|
<div class="dashboard-header" style="margin-top: var(--space-lg);">
|
|
<div class="header-left" style="display: flex; align-items: center; gap: var(--space-md);">
|
|
<a href="{{ url_for('home') }}" class="btn btn-secondary btn-sm">
|
|
<i class="fa-solid fa-arrow-left"></i> Back to Home
|
|
</a>
|
|
<h1 class="page-title" style="margin-bottom: 0;">Admin Dashboard</h1>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="modules-section">
|
|
<h2 class="section-title">Modules</h2>
|
|
<div class="modules-grid">
|
|
<a href="{{ url_for('counting.admin_dashboard') }}" class="module-card">
|
|
<div class="module-icon">📊</div> <h3 class="module-name">Counts</h3>
|
|
<p class="module-desc">Cycle counts & physical inventory</p>
|
|
</a>
|
|
|
|
<a href="{{ url_for('cons_sheets.admin_processes') }}" class="module-card module-card-link">
|
|
<div class="module-icon">📝</div> <h3 class="module-name">Consumption Sheets</h3>
|
|
<p class="module-desc">Production consumption tracking</p>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |