{% extends "base.html" %} {% from '_comments.html' import render_comments %} {% from '_featured_image.html' import featured_image_block %} {% from '_archive.html' import archive_button, archived_chip %} {% block content %} {# Recursive macro reused for the edit-mode checklist below. #} {% macro render_area_nodes(nodes, selected) %} {% endmacro %} {{ featured_image_block('station', station.id, station.featured_image_path, station.name) }}

{{ station.name }}

{{ archive_button('station', station.id, station.is_archived, '/stations/' ~ station.id) }}

Current timer schedule

{{ station.current_schedule or '+ add' }}

Notes

{{ station.notes or '+ add' }}

Areas served

{% if station_areas %} {% else %}

No areas assigned. Click Edit areas served to attach areas.

{% endif %}
{{ render_comments(station_comments, 'station', station.id, '/stations/' ~ station.id, include_children=include_children, include_related=include_related, supports_children=supports_children) }}
{% endblock %} {% block scripts %} {% endblock %}