{% extends "base.html" %} {% set active_page = 'worksets' %} {% block title %}Archived Worksets - Ursa Customer Portal{% endblock %} {% block content %}
{% if worksets %} {% for ws in worksets %} {% endfor %} {% else %} {% endif %}
Workset ID Type Customer Original Status Pipeline Samples Archived Date Archived By Reason Actions
{{ ws.workset_id[:16] }}... {% set wtype = ws.workset_type | default('ruo') | lower %} {% if wtype == 'clinical' %} Clinical {% elif wtype == 'lsmc' %} LSMC {% else %} RUO {% endif %} {{ ws.customer_id | default('Unknown') | truncate(12, True, '...') }} {{ ws.original_state | default('Unknown') }} {{ ws.pipeline_type | default('germline') }} {{ ws.sample_count | default(0) }} {{ ws.archived_at | default('N/A') }} {{ ws.archived_by | default('System') }} {{ ws.archive_reason | default('—') }}

No archived worksets

Archived worksets will appear here

Back to Worksets
About Archived Worksets

Archived worksets are moved to cold storage and won't appear in your active worksets list. You can restore them at any time to make them active again, or permanently delete them to free up storage.

{% endblock %} {% block extra_js %} {% endblock %}