<%- include('../partials/fedi-tabs', { active: 'connect' }) %>

<%= t('tl.connect') %>

<% if (typeof success !== 'undefined' && success) { %>
<%= success %>
<% } %> <% if (typeof error !== 'undefined' && error) { %>
<%= error %>
<% } %> <%# FEP-633c §2 + §3.6: who guards this account, and how available each of them is. Connect is the "who am I connected to" page, and a guardian is the one connection a ward should never have to hunt for. Availability in buddy-list language on the responsibility axis; the labels are UI, the wire keeps the spec terms. Never public: this page is the owner's. %> <% if (typeof myGuardians !== 'undefined' && myGuardians.length) { %>

🛡 <%= t('msg.guardians_label') %>

<% } %> <% var _moved = (typeof movedTo !== 'undefined' && movedTo) ? movedTo : null; %> <% if (_moved) { %> <%# De uitgaande kant staat op slot (FEP-7628). Dat hoort te blijken voordat je op een knop drukt, niet daarna uit een foutmelding. Lezen blijft wel gewoon werken, dus de lijst hieronder staat er nog. %>
<%= t('tl.moved_title') %>

<%= t('tl.moved_lead') %> <%= _moved %>

<%= t('tl.moved_hint') %>

<% } else { %>
<% } %> <%# Je volglijst meenemen staat sinds 14-8 op /admin/migrate, bij de rest van de verhuizing (Robin: alle migratie-opties op de migrate-pagina). Hier stond hij bovendien zonder enige opmaak: labels als losse tekst naast hun invoerveld. Op die pagina erft hij de kaartopmaak. %> <%# De eigenaarspoort (Robins wens, 18-8): volgverzoeken die wachten op een beslissing van de eigenaar. Alleen buiten voogdij — een ward ziet dit nooit, want daar beslissen de guardians. %> <% var folreqs = (typeof followRequests !== 'undefined' && followRequests) || []; %> <% if (folreqs.length) { %>

<%= t('tl.folreq_title') %>

<%= t('tl.folreq_sub') %>

<% } %> <% var conns = connections || []; var reachable = conns.filter(function (c) { return !c.unreachable; }); var unreachable = conns.filter(function (c) { return c.unreachable; }); // Display fields for one connection: name/handle (fallback: derive from actor_uri). function connView(c) { var host = '', user = ''; try { var u = new URL(c.actor_uri); host = u.hostname; user = (u.pathname.split('/').filter(Boolean).pop() || ''); } catch (e) {} var handle = c.handle || (user ? ('@' + user + '@' + host) : c.actor_uri); var display = c.name || handle; return { handle: handle, display: display, initial: String(display || '?').replace(/^@/, '').charAt(0).toUpperCase(), profileUrl: c.url || c.actor_uri }; } function arrow(dir) { return dir === 'mutual' ? '↔' : (dir === 'following' ? '→' : '←'); } %> <% if (reachable.length) { %> <% } else { %>

<%= t('tl.connect_empty') %>

<% } %> <% if (unreachable.length) { %>
⚠ <%= t('tl.unreachable') %> (<%= unreachable.length %>)

<%= t('tl.unreachable_lead') %>

<% } %>