{% extends "base.html" %} {% block title %}Admin Dashboard - ScanLook{% endblock %} {% block content %}
Back to Home

Admin Dashboard

+ New Session
{% if sessions %}
{% for session in sessions %}

{{ session.session_name }} {% if session.status == 'archived' %}ARCHIVED{% endif %}

{{ 'Full Physical' if session.session_type == 'full_physical' else 'Cycle Count' }}
{{ session.total_locations or 0 }}
Total Locations
{{ session.completed_locations or 0 }}
Completed
{{ session.in_progress_locations or 0 }}
In Progress
Created: {{ session.created_timestamp[:16] }}
By: {{ session.created_by_name }}
{% endfor %}
{% else %}
📋

No Active Sessions

Create a new count session to get started

Create First Session
{% endif %}
{% endblock %}