{% extends "base.html" %} {% set active_nav = "testkits" %} {% block title %}{% if testkit %}Edit{% else %}Create{% endif %} Test Kit - LSMC Hub{% endblock %} {% block content %}

When blank, Atlas creates the kit and uses its EUID as the printable fallback label.

{% set site_management_url = '/my-organization/sites' %} {% set site_management_label = 'View Sites' %} {% if user and user.is_admin and organization_euid %} {% set site_management_url = '/admin/organizations/' ~ organization_euid ~ '/sites/new' %} {% set site_management_label = 'Add Site' %} {% elif user and user.roles and 'EXTERNAL_USER_ADMIN' in user.roles %} {% set site_management_url = '/my-organization/sites/new' %} {% set site_management_label = 'Add Site' %} {% endif %} {% if site_options %}

Used to resolve site-specific Bloom integration settings for this kit.

{% else %}
No active sites found for this organization. {{ site_management_label }} to configure one.
{% endif %}
Cancel
{% endblock %}