{% extends "base.html" %} {% set active_nav = "my-organization" %} {% block title %}My Organization - LSMC Atlas{% endblock %} {% block content %}

Information

{{ 'Active' if revision.is_active else 'Inactive' }}
Name
{{ revision.name }}
Display Name
{{ revision.display_name or 'โ€”' }}
Type
{{ revision.org_type or 'clinic' }}
Contact Email
{{ revision.contact_email or 'โ€”' }}
Contact Phone
{{ revision.contact_phone or 'โ€”' }}

Manage

Bloom Integration

Connection Status: {{ bloom_connection_status.label }}

{{ bloom_connection_status.detail }}

Organization settings are the default. A site-level setting overrides them when a TRF Test requests Bloom material for that site.

Required Atlas fields for Bloom API access: bloom_base_url, bloom_api_key_secret_ref, bloom_webhook_secret_ref.

Optional service account/user label used for Bloom-side audit context.

Bloom API host Atlas will call (example: https://bloom.example.org).

Per-tenant Bloom token source. Supported values: direct blm_... token, env:MY_BLOOM_KEY, or file:/path/to/secret.

Secret reference used to verify Bloom webhook signatures in Atlas.

{% if user.is_org_admin %}
{% endif %}

Storage Policy

{% if effective_org_storage_policy %}

Effective policy source: {{ 'site override' if effective_org_storage_policy.scope == 'site' else 'organization policy' }} ยท bucket {{ effective_org_storage_policy.policy.bucket }} ยท region {{ effective_org_storage_policy.policy.region }}

{% else %}

No enabled storage policy is configured yet.

{% endif %}

Atlas storage policy is authoritative for Dewey upload placement and Ursa return targeting.

{% if user.is_org_admin %} {% endif %}

Sites

{% if user.is_org_admin %} + Add Site {% endif %}
{% if sites %}
{% for site in sites[:5] %} {% endfor %}
Name Site Code Location Bloom Config Status
{{ site.name }} {{ site.site_code or 'โ€”' }} {% if site.city and site.state %} {{ site.city }}, {{ site.state }} {% else %} โ€” {% endif %} {% if site.bloom_config_enabled %} Site Override {% else %} Org Default {% endif %} {{ 'Active' if site.is_active else 'Inactive' }} View
{% if sites|length > 5 %} {% endif %} {% else %}
No sites found.
{% endif %}

Users

{% if user.is_org_admin %} + Add User {% endif %}
{% if users %}
{% for user in users[:5] %} {% endfor %}
Name Email Roles Status
{{ user.name or 'โ€”' }} {{ user.email }} {% for role in user.roles %} {{ role }} {% endfor %} {{ 'Active' if user.is_active else 'Inactive' }}
{% if users|length > 5 %} {% endif %} {% else %}
No users found.
{% endif %}
{% endblock %}