{% extends "base.html" %} {% block title %}My Counts - {{ count_session.session_name }} - ScanLook{% endblock %} {% block content %}
{% if active_bins %}

🔄 Active Bins (In Progress)

{% for bin in active_bins %}

{{ bin.location_name }}

In Progress
Scanned: {{ bin.scan_count or 0 }}
Started: {{ bin.start_timestamp[11:16] if bin.start_timestamp else '-' }}
Resume Counting
{% endfor %}
{% endif %} {% if completed_bins %}

✅ Completed Bins

{% for bin in completed_bins %}

{{ bin.location_name }}

Completed
Scanned: {{ bin.scan_count or 0 }}
Completed: {{ bin.end_timestamp[11:16] if bin.end_timestamp else '-' }}

Contact an admin to view details

{% endfor %}
{% endif %} {% if not active_bins and not completed_bins %}
📦

No Bins Started Yet

Click "Start New Bin" to begin counting

{% endif %}
{% endblock %}