37 lines
1.1 KiB
HTML
37 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Admin Settings{% endblock %}
|
|
|
|
{% block body %}
|
|
<main class="shell">
|
|
<section class="page-heading stacked-heading">
|
|
<div>
|
|
<h1>Admin settings</h1>
|
|
<p>Admin-only operational controls for the Nornsight workspace.</p>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="admin-card">
|
|
<h2>WorkOS-managed access</h2>
|
|
<p>
|
|
Invitations, Google access, and role assignments are managed in the WorkOS dashboard.
|
|
This page confirms that app-level admin gating is active.
|
|
</p>
|
|
<dl class="admin-meta">
|
|
<div>
|
|
<dt>Workspace organization</dt>
|
|
<dd><code>{{ organization_id }}</code></dd>
|
|
</div>
|
|
<div>
|
|
<dt>Current administrator</dt>
|
|
<dd>{{ current_user_email }}</dd>
|
|
</div>
|
|
</dl>
|
|
<div class="admin-actions">
|
|
<a href="/dashboard">Return to dashboard</a>
|
|
<a href="https://dashboard.workos.com/" rel="noreferrer" target="_blank">Open WorkOS dashboard</a>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
{% endblock %}
|