{% extends "layout/base.html" %} {% block content %}

Cloud Connect Accounts

{# ── Unmatched accounts ─────────────────────────────────────────────────── #} {% if unmatched %}

Unmatched {{ unmatched|length }}

Click a row to create a new job or link to an existing one.

{% for acc in unmatched %} {% endfor %}
User Section Repository Used / Quota Free Last active Status First seen
{{ acc.user }} {{ acc.section }} {{ acc.repo_name or '—' }}
{{ acc.repo_type or '' }}
{{ acc.used_space or '—' }} / {{ acc.total_quota or '—' }} {{ acc.free_space or '—' }} {{ acc.last_active_raw or '—' }} {% if acc.last_status == 'Failed' %} Failed {% elif acc.last_status == 'Warning' %} Warning {% else %} Success {% endif %} {{ acc.first_seen_at|local_datetime }}
{% else %}
All accounts matched. No unmatched Cloud Connect accounts.
{% endif %} {# ── Matched accounts ───────────────────────────────────────────────────── #} {% if matched %}

Linked {{ matched|length }}

{% for acc in matched %} {% endfor %}
User Section Repository Used / Quota Free Last active Status Linked job
{{ acc.user }} {{ acc.section }} {{ acc.repo_name or '—' }}
{{ acc.repo_type or '' }}
{{ acc.used_space or '—' }} / {{ acc.total_quota or '—' }} {{ acc.free_space or '—' }} {{ acc.last_active_raw or '—' }} {% if acc.last_status == 'Failed' %} Failed {% elif acc.last_status == 'Warning' %} Warning {% else %} Success {% endif %} {% if acc.job %} {{ acc.job.customer.name ~ ' – ' if acc.job.customer else '' }}{{ acc.job.job_name }} {% else %}—{% endif %}
{% endif %} {% if not unmatched and not matched %}
No Cloud Connect accounts found yet. They appear here automatically after the first daily report email is imported.
{% endif %} {# ── Shared link/create modal ───────────────────────────────────────────── #} {% endblock %}