{% extends "base.html" %} {% block title %}{{ lab.name }} - SW Labs Management{% endblock %} {% block content %}

{{ lab.name }}

Back to Labs
Lab Information

Location: {{ lab.location or 'Not specified' }}
Description: {{ lab.description or 'No description available' }}

Lab Statistics

{{ lab.stations|length }}

Total Stations

{{ lab.stations|selectattr("is_occupied", "equalto", false)|list|length }}

Available

Stations

{% if lab.stations %}
{% for station in lab.stations %}
{{ station.name }} {% if station.is_occupied %} Occupied {% else %} Available {% endif %}
{% if station.description %}

{{ station.description }}

{% endif %}
Devices ({{ station.devices|length }})
{% if station.devices %}
{% for device in station.devices %}
{{ device.name }}
{{ device.device_type }} - {{ device.ip_address }}
{% if device.is_online %}Online{% else %}Offline{% endif %}
{% endfor %}
{% else %}

No devices in this station

{% endif %}
{% endfor %}
{% else %}
No stations found in this lab. {% if current_user.is_authenticated and current_user.is_admin %} Add stations in the admin panel. {% endif %}
{% endif %}
{% endblock %}