You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.4 KiB
77 lines
2.4 KiB
{% extends "portal_base.html" %} |
|
|
|
{% block title %}OTB Cloud Dashboard{% endblock %} |
|
|
|
{% block portal_content %} |
|
<div class="portal-page-header"> |
|
<div> |
|
<h1 class="portal-page-title">OTB Cloud Dashboard</h1> |
|
<p class="portal-client-name">{{ user_email }}</p> |
|
<p class="portal-page-subtitle"> |
|
Secure backup and storage dashboard for your account. |
|
</p> |
|
</div> |
|
|
|
<div class="portal-toolbar" style="display:flex;flex-direction:column;align-items:flex-end;gap:10px;"> |
|
<div style="display:flex;gap:10px;justify-content:flex-end;flex-wrap:wrap;"> |
|
<a class="portal-btn primary" href="https://otb-billing.outsidethebox.top/portal/services">Back to Services</a> |
|
<a class="portal-btn" href="/auth/logout">Logout</a> |
|
</div> |
|
|
|
<div style="text-align:right;font-size:14px;opacity:0.95;"> |
|
<div>Logged in as: |
|
<strong>{{ user_email }}</strong></div> |
|
<div>Tenant slug: |
|
<strong>{{ tenant_slug }}</strong></div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<section class="services-grid"> |
|
<article class="service-card status-beta"> |
|
<div class="service-card-header"> |
|
<div> |
|
<h2>Devices</h2> |
|
<p>Registered source locations for uploaded data.</p> |
|
</div> |
|
<div> |
|
<span class="service-badge service-badge-beta">Active</span> |
|
</div> |
|
</div> |
|
|
|
<div class="service-card-actions"> |
|
{% if devices %} |
|
<ul style="padding-left:18px; margin:0;"> |
|
{% for device in devices %} |
|
<li style="margin-bottom:10px;"> |
|
<strong>{{ device.device_name }}</strong> |
|
<span style="opacity:0.85;">({{ device.device_type }})</span><br> |
|
<span style="opacity:0.75;">{{ device.relative_path }}</span> |
|
</li> |
|
{% endfor %} |
|
</ul> |
|
{% else %} |
|
<p>No devices have been created yet.</p> |
|
{% endif %} |
|
</div> |
|
</article> |
|
|
|
<article class="service-card status-beta"> |
|
<div class="service-card-header"> |
|
<div> |
|
<h2>Current scope</h2> |
|
<p>OTB Cloud is now operating inside the branded OTB portal shell.</p> |
|
</div> |
|
<div> |
|
<span class="service-badge service-badge-beta">In Progress</span> |
|
</div> |
|
</div> |
|
|
|
<div class="service-card-actions"> |
|
<p style="margin:0;"> |
|
Next steps are the searchable file library, bulk upload endpoints, zip export, and media processing jobs. |
|
</p> |
|
</div> |
|
</article> |
|
</section> |
|
{% endblock %}
|
|
|