{% extends "base.html" %} {% block title %}SW Labs Management System{% endblock %} {% block content %}

SW Labs Management System

{% if not current_user.is_authenticated %}
Please login to occupy or release stations.
{% endif %}
{{ total_labs }}

Total Labs

{{ total_stations }}

Total Stations

{{ available_stations }}

Available Stations

{{ occupied_stations }}

Occupied Stations

{% if labs %}
{% for lab in labs %}
{{ lab.name }}

{{ lab.location or 'Location not specified' }} {% if lab.description %} | {{ lab.description }}{% endif %}

{% if lab.stations %}
{% for station in lab.stations %}
{{ station.name }}
{% if station.is_functional %} Functional {% else %} Non-functional {% endif %}

{{ station.description or 'No description' }}

{% if station.is_occupied %} Occupied {% if station.occupied_until %}
Until: {{ station.occupied_until.strftime('%Y-%m-%d %H:%M') }} {% endif %} {% else %} Available {% endif %}
View Details {% if not station.is_occupied and station.is_functional %} Occupy {% endif %}
{% endfor %}
{% else %}
No stations available in this lab.
{% endif %}
{% endfor %}
{% else %}
No labs found. {% if current_user.is_authenticated and current_user.is_admin %} Add labs in the admin panel. {% endif %}
{% endif %}
{% endblock %}