{% extends "base.html" %} {% block title %}Occupy Station - {{ station.name }}{% endblock %} {% block content %}

Occupy Station: {{ station.name }}

Station Details

Description: {{ station.description }}

Lab: {{ station.lab.name }}

Status: {% if station.is_functional %} Functional {% else %} Non-functional {% endif %}

{% if not station.is_functional %}
Warning: This station is marked as non-functional. Please contact an administrator.
{% else %}
Cancel
{% endif %}
{% endblock %}