{% extends "base.html" %} {% set active_page = 'dashboard' %} {% block title %}Dashboard - Ursa Customer Portal{% endblock %} {% block content %}
{{ stats.in_progress_worksets | default(0) }}
In Progress
{{ stats.ready_worksets | default(0) }}
Ready/Queued
{{ stats.completed_worksets | default(0) }}
Completed
{{ stats.error_worksets | default(0) }}
Errors
${{ "%.2f"|format(stats.cost_this_month | default(0)) }}
This Month
Compute: ${{ "%.2f"|format(stats.compute_cost_usd | default(0)) }}
{{ stats.registered_files | default(0) }}
Registered Files
{{ "%.2f"|format(stats.total_file_size_gb | default(0)) }} GB
${{ "%.4f"|format(stats.storage_cost_usd | default(0)) }}
Storage Cost
{{ stats.workset_storage_human | default('0 B') }}
${{ "%.2f"|format(stats.cost_this_month | default(0)) }}
30-Day Costs
View breakdown
Registered Files {{ "%.2f"|format(stats.total_file_size_gb | default(0)) }} GB
{{ stats.registered_files | default(0) }} files
Workset Storage {{ stats.workset_storage_human | default('0 B') }}
{{ stats.completed_worksets | default(0) }} completed worksets

Recent Worksets

View All
{% if worksets %} {% for ws in worksets[:5] %} {% endfor %} {% else %} {% endif %}
Workset ID Status Samples Created Actions
{{ ws.workset_id[:12] }}... {{ ws.state }} {{ ws.sample_count | default(0) }} {{ ws.created_at | default('N/A') }}

No worksets yet

Create Your First Workset

Account Details

Display Name
{{ customer.customer_name | default(customer.customer_id) }}
Customer ID
{{ customer.customer_id | default('N/A') }}
S3 Bucket
{{ customer.s3_bucket | default('N/A') }}
Max Worksets
{{ customer.max_concurrent_worksets | default(10) }}
Billing Account ID
{{ customer.billing_account_id | default('N/A') }}
Cost Center (chargeback tag)
{{ customer.cost_center | default('N/A') }}

Processing Activity (Last 30 Days)

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