{% extends "base.html" %} {% set active_nav = "my-organization" %} {% block title %}Sites - My Organization - LSMC Atlas{% endblock %} {% block content %}
{% if sites %}
{% for site in sites %} {% endfor %}
Name Site Code Address Contact Email Contact Phone Bloom Config Status
{{ site.name }} {{ site.site_code or '—' }} {% if site.city and site.state %} {{ site.city }}, {{ site.state }} {% else %} — {% endif %} {{ site.contact_email or '—' }} {{ site.contact_phone or '—' }} {% if site.bloom_config_enabled %} Site Override {% else %} Org Default {% endif %} {{ 'Active' if site.is_active else 'Inactive' }} View
{% else %}

No sites found in your organization.

{% if user.is_org_admin %} Add First Site {% endif %}
{% endif %}
{% endblock %}