{% extends "base.html" %} {% set active_nav = "admin" %} {% block title %}Site {{ site.euid }} - LSMC Atlas{% endblock %} {% block content %}

Identity

Organization
{% if organization %} {{ organization.euid }} {% else %} {{ site.organization_id }} {% endif %}
Status
{{ 'Active' if (revision and revision.is_active) else 'Inactive' }}

Site Information

Name
{{ revision.name if revision else '—' }}
Site Code
{{ revision.site_code if revision and revision.site_code else '—' }}
Contact Email
{{ revision.contact_email if revision and revision.contact_email else '—' }}
Contact Phone
{{ revision.contact_phone if revision and revision.contact_phone else '—' }}
Address
{% if revision and revision.address %} {{ revision.address.get('line1', '') }} {% if revision.address.get('line2') %}
{{ revision.address.get('line2') }}{% endif %} {% if revision.address.get('city') or revision.address.get('state') or revision.address.get('postal_code') %}
{{ revision.address.get('city', '') }} {% if revision.address.get('state') %}, {{ revision.address.get('state') }}{% endif %} {% if revision.address.get('postal_code') %} {{ revision.address.get('postal_code') }}{% endif %} {% endif %} {% else %} — {% endif %}

Bloom Integration

Site settings override the organization-level Bloom integration for Test material requests that originate from this site.

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

{% if effective_bloom_config %}

Effective config source: {{ 'site override' if effective_bloom_config.scope == 'site' else 'organization default' }}

{% endif %}

TRF Test material requests use this site override when the selected shipment or test kit originates from this site.

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

Bloom API host Atlas will call for this site override.

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.

{% include "partials/tube_panel.html" %} {% endblock %}